8 lines
125 B
TypeScript
8 lines
125 B
TypeScript
export interface ServerConfig {
|
|
signup: {
|
|
allowed: boolean
|
|
}
|
|
transcoding: {
|
|
enabledResolutions: number[]
|
|
}
|
|
}
|