Files
2026-02-10 01:14:19 +00:00

7 lines
125 B
TypeScript

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