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