sn.mjs
383 Bytes
const SN_STATUS_VALUES = [
"pending",
"in_process",
"completed",
"frozen",
"scrapped"
];
const SN_EXCEPTION_STATUS_VALUES = [
"none",
"open",
"rework",
"closed"
];
const SN_ACTION_VALUES = [
"import",
"freeze",
"unfreeze",
"scrap"
];
export { SN_ACTION_VALUES as S, SN_EXCEPTION_STATUS_VALUES as a, SN_STATUS_VALUES as b };
//# sourceMappingURL=sn.mjs.map