UNPKG

412 BTypeScriptView Raw
1import { Logger } from "./Logger";
2import { GameConfiguration } from "./GameConfiguration";
3export interface ConfigurationParameterObject {
4 content: GameConfiguration;
5 logger?: Logger;
6}
7export declare class Configuration {
8 _content: GameConfiguration;
9 _logger: Logger;
10 constructor(param: ConfigurationParameterObject);
11 getContent(): GameConfiguration;
12 vacuumGlobalScripts(): void;
13}