UNPKG

@synotech/utils

Version:

a collection of utilities for internal use

7 lines (6 loc) 257 B
/** * @module deliveryNoteStatus * @description A list of deliveryNoteStatus */ export declare const deliveryNoteStatus: readonly ["delivered", "returned", "cancelled"]; export declare type DeliveryNoteStatus = (typeof deliveryNoteStatus)[number];