UNPKG

@synotech/utils

Version:

a collection of utilities for internal use

12 lines (10 loc) 243 B
/** * @module deliveryNoteStatus * @description A list of deliveryNoteStatus */ export const deliveryNoteStatus = [ 'delivered', 'returned', 'cancelled', ] as const; export type DeliveryNoteStatus = (typeof deliveryNoteStatus)[number];