Sign in

zengzy / rps · Files

Logo

GitLab

  • Back to dashboard
  • Project
  • Activity
  • Files
  • Commits
  • Network
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Labels
  • Wiki
  • rps
  • frontend
  • .output
  • server
  • chunks
  • _
  • sn.mjs
  • init2
    a6327828
    zengzy authored
    2026-05-21 16:10:06 +0800  
    Browse Code ยป
sn.mjs 383 Bytes
Edit Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
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