PeerTube/packages/models/src/import-export/user-export-state.enum.ts

9 lines
192 B
TypeScript

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