1
0
Fork 0
peertube/shared/models/videos/import/video-import-state.enum.ts
2022-01-19 14:31:05 +01:00

8 lines
133 B
TypeScript

export const enum VideoImportState {
PENDING = 1,
SUCCESS = 2,
FAILED = 3,
REJECTED = 4,
CANCELLED = 5,
PROCESSING = 6
}