atomic-delivery-types
v2.3.0
Published
Library to share across all the projects(related to delivery) common dtos, enums, types, interfaces
Downloads
10
Keywords
Readme
Description
The Delivery types repository is a library that provides common interfaces, DTOs, types, and enums to be used in any repository within the delivery space.
Installation
npm install atomic-delivery-types
or
yarn add atomic-delivery-types
Usage
import { UpdateAddressDto } from "atomic-delivery-types";
// Then you can use the DTO imported as a type.
const updateAddressInput: UpdateAddressDto;
// Another example
import { Gender } from "atomic-delivery-types"
const male = Gender.MALE;
Contributing
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.