You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
491 B
11 lines
491 B
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);
|
|
}
|
|
|