mirror of
https://github.com/Chocobozzz/PeerTube.git
synced 2025-02-25 18:55:32 -06:00
9 lines
129 B
TypeScript
9 lines
129 B
TypeScript
export enum VideoResolution {
|
|
ORIGINAL = 0,
|
|
H_240P = 240,
|
|
H_360P = 360,
|
|
H_480P = 480,
|
|
H_720P = 720,
|
|
H_1080P = 1080
|
|
}
|