Files
flood/config.d.ts
2020-10-14 10:58:52 +08:00

26 lines
609 B
TypeScript

import type {ClientConnectionSettings} from '@shared/schema/ClientConnectionSettings';
declare const CONFIG: {
baseURI: string;
dbCleanInterval: number;
dbPath: string;
tempPath: string;
disableUsersAndAuth: boolean;
configUser: ClientConnectionSettings;
floodServerHost: string;
floodServerPort: number;
floodServerProxy: string;
maxHistoryStates: number;
torrentClientPollInterval: number;
secret: string;
ssl: boolean;
sslKey: string;
sslCert: string;
diskUsageService: {
watchMountPoints: Array<string>;
};
allowedPaths: Array<string> | null;
};
export = CONFIG;