mirror of
https://github.com/Chocobozzz/PeerTube.git
synced 2025-10-04 02:09:37 +02:00
6 lines
98 B
TypeScript
6 lines
98 B
TypeScript
export const enum VideoImportState {
|
|
PENDING = 1,
|
|
SUCCESS = 2,
|
|
FAILED = 3,
|
|
REJECTED = 4
|
|
}
|