File size: 125 Bytes
fea495a | 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>;
}
|
fea495a | 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>;
}
|