smartuniverse/dist/smartuniverse.classes.smartuniverse.d.ts
2018-03-08 23:42:46 +01:00

12 lines
335 B
TypeScript

export interface ISmartUniverseConstructorOptions {
port: number | string;
}
export declare class SmartUniverse {
private options;
private universeVersionStore;
private readonly universeVersion;
private smartexpressServer;
constructor(optionsArg: ISmartUniverseConstructorOptions);
init(): Promise<void>;
}