File size: 122 Bytes
1e92f2d |
1 2 3 4 5 6 7 |
/**
* Loads a given module for a given ID.
*/
export interface ModuleLoader {
load<M = any>(id: string): Promise<M>
}
|
1e92f2d |
1 2 3 4 5 6 7 |
/**
* Loads a given module for a given ID.
*/
export interface ModuleLoader {
load<M = any>(id: string): Promise<M>
}
|