mirror of
https://github.com/Chocobozzz/PeerTube.git
synced 2024-11-25 18:20:31 -06:00
22 lines
289 B
TypeScript
22 lines
289 B
TypeScript
export interface ServerConfig {
|
|
signup: {
|
|
allowed: boolean
|
|
}
|
|
transcoding: {
|
|
enabledResolutions: number[]
|
|
}
|
|
avatar: {
|
|
file: {
|
|
size: {
|
|
max: number
|
|
},
|
|
extensions: string[]
|
|
}
|
|
}
|
|
video: {
|
|
file: {
|
|
extensions: string[]
|
|
}
|
|
}
|
|
}
|