12 lines
335 B
TypeScript
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>;
|
||
|
}
|