UNPKG

@synotech/utils

Version:

a collection of utilities for internal use

7 lines (6 loc) 228 B
/** * @module orderStatus * @description A list of orderStatus */ export declare const orderStatus: readonly ["draft", "onhold", "accepted", "cancelled"]; export declare type OrderStatus = (typeof orderStatus)[number];