mirror of
https://github.com/p-stream/backend.git
synced 2026-03-11 17:55:35 +00:00
6 lines
144 B
TypeScript
6 lines
144 B
TypeScript
export const status = {
|
|
failed: 'failed',
|
|
notfound: 'notfound',
|
|
success: 'success',
|
|
} as const;
|
|
export type Status = keyof typeof status;
|