@eclipse-scout/core
Version:
Eclipse Scout runtime
17 lines • 588 B
TypeScript
/**
* Map of config property source system to the config properties from that system.
* More systems can be added using TypeScript declaration merging.
*/
export interface ConfigProperties {
main: MainConfigProperties;
}
/**
* Map for the main config properties: key to value data type.
* More properties can be added using TypeScript declaration merging.
*/
export interface MainConfigProperties {
'scout.devMode': boolean;
'scout.ui.backgroundPollingMaxWaitTime': number;
'scout.uinotification.waitTimeout': number;
}
//# sourceMappingURL=ConfigProperties.d.ts.map