UNPKG

next

Version:

The React Framework

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