8 lines
288 B
TypeScript
8 lines
288 B
TypeScript
export const DEPARTMENT_ASSIGNMENT_TYPE_OPTIONS = [
|
|
{ value: "none", label: "None" },
|
|
{ value: "bays", label: "Bays" },
|
|
{ value: "outsourced", label: "Outsourced" },
|
|
] as const
|
|
|
|
export type DepartmentAssignmentType = typeof DEPARTMENT_ASSIGNMENT_TYPE_OPTIONS[number]["value"]
|