summaryrefslogtreecommitdiff
path: root/src/node_modules/inversify/dts/container/container_module.d.ts
blob: 92b8698d255fb08a5098d7e6c61a6b7ba9d314ff (plain)
1
2
3
4
5
6
7
8
9
10
11
import { interfaces } from "../interfaces/interfaces";
export declare class ContainerModule implements interfaces.ContainerModule {
    id: number;
    registry: interfaces.ContainerModuleCallBack;
    constructor(registry: interfaces.ContainerModuleCallBack);
}
export declare class AsyncContainerModule implements interfaces.AsyncContainerModule {
    id: number;
    registry: interfaces.AsyncContainerModuleCallBack;
    constructor(registry: interfaces.AsyncContainerModuleCallBack);
}