PeerTube_original/shared/models/server/custom-config.model.ts
BO41 244b4ae397 NoImplicitAny flag true (#1157)
this enables the `noImplicitAny` flag in the Typescript compiler

> When the noImplicitAny flag is true and the TypeScript compiler cannot infer the type, it still generates the JavaScript files, but it also reports an error. Many seasoned developers prefer this stricter setting because type checking catches more unintentional errors at compile time.

closes: #1131
replaces #1137
2018-10-18 09:08:59 +02:00

73 lines
1.1 KiB
TypeScript

import { NSFWPolicyType } from '../videos/nsfw-policy.type'
export interface CustomConfig {
instance: {
name: string
shortDescription: string
description: string
terms: string
defaultClientRoute: string
defaultNSFWPolicy: NSFWPolicyType
customizations: {
javascript?: string
css?: string
}
}
services: {
twitter: {
username: string
whitelisted: boolean
}
}
cache: {
previews: {
size: number
}
captions: {
size: number
}
}
signup: {
enabled: boolean
limit: number
requiresEmailVerification: boolean
}
admin: {
email: string
}
user: {
videoQuota: number
videoQuotaDaily: number
}
transcoding: {
enabled: boolean
threads: number
resolutions: {
'240p': boolean
'360p': boolean
'480p': boolean
'720p': boolean
'1080p': boolean
[key: string]: boolean
}
}
import: {
videos: {
http: {
enabled: boolean
},
torrent: {
enabled: boolean
}
}
}
}