smartuniverse/dist/smartuniverse.classes.smartuniverse.d.ts

12 lines
335 B
TypeScript
Raw Normal View History

2018-03-08 22:42:46 +00:00
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>;
}