UNPKG

@tsdi/platform-server-boot

Version:

boot application on node server, AOP Ioc container, via typescript decorator

26 lines (25 loc) 624 B
import { IContainer } from '@tsdi/core'; import { IConfigureLoader, Configure } from '@tsdi/boot'; /** * configure file loader. * * @export * @class ConfigureFileLoader * @implements {IConfigureLoader<Configure>} */ export declare class ConfigureFileLoader implements IConfigureLoader<Configure> { private baseURL; private container; constructor(baseURL: string, container: IContainer); load(uri?: string): Promise<Configure>; static ρAnn(): any; } /** * server boot module * * @export * @class ServerBootstrapModule */ export declare class ServerBootstrapModule { static ρAnn(): any; }