PeerTube/packages/models/src/import-export/user-import-state.enum.ts
2024-02-21 13:49:08 +01:00

9 lines
192 B
TypeScript

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