5 lines
80 B
TypeScript
5 lines
80 B
TypeScript
export enum VideoState {
|
|
PUBLISHED = 1,
|
|
TO_TRANSCODE = 2,
|
|
TO_IMPORT = 3
|
|
}
|