Cleanups.
[e-mobility-charging-stations-simulator.git] / src / types / ConfigurationData.ts
CommitLineData
e118beaa
JB
1export interface StationTemplateURL {
2 file: string;
3 numberOfStations: number;
4}
5
6export default interface ConfigurationData {
7 supervisionURLs?: string[];
8 stationTemplateURLs: StationTemplateURL[];
9 statisticsDisplayInterval?: number;
032d6efc 10 connectionTimeout?: number;
e118beaa 11 autoReconnectMaxRetries?: number;
524d9cb3 12 distributeStationsToTenantsEqually?: boolean;
e118beaa
JB
13 useWorkerPool?: boolean;
14 workerPoolSize?: number;
5fdab605 15 chargingStationsPerWorker?: number;
e118beaa
JB
16 logFormat?: string;
17 logLevel?: string;
6bf6769e
JB
18 logRotate?: boolean;
19 logMaxFiles?: number;
e118beaa 20 logFile?: string;
7ec46a9a
JB
21 logErrorFile?: string;
22 logConsole?: boolean;
e118beaa 23}