Files
2026-01-01 15:25:19 +05:30

7 lines
125 B
TypeScript

/**
* Loads a given module for a given ID.
*/
export interface ModuleLoader {
load<M = any>(id: string): Promise<M>;
}