8 lines
190 B
TypeScript
8 lines
190 B
TypeScript
|
|
export const QUEUE_NAMES = {
|
||
|
|
EMAIL: "email",
|
||
|
|
PROVISIONING: "provisioning",
|
||
|
|
RECONCILE: "reconcile",
|
||
|
|
} as const;
|
||
|
|
|
||
|
|
export type QueueName = (typeof QUEUE_NAMES)[keyof typeof QUEUE_NAMES];
|