mirror of
https://github.com/zoriya/flood.git
synced 2025-12-06 07:16:18 +00:00
26 lines
609 B
TypeScript
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;
|