b91e262
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> }