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.
12 lines
491 B
12 lines
491 B
4 months ago
|
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);
|
||
|
}
|