ファイル
nizika_video/packages/models/src/import-export/user-export-state.enum.ts
T
2024-07-15 09:14:04 +09:00

9 行
192 B
TypeScript

export const UserExportState = {
PENDING: 1,
PROCESSING: 2,
COMPLETED: 3,
ERRORED: 4
} as const
export type UserExportStateType = typeof UserExportState[keyof typeof UserExportState]