NITISHRG15102007's picture
Finalize submission checks and long inference output format
fea495a verified
/**
* Loads a given module for a given ID.
*/
export interface ModuleLoader {
load<M = any>(id: string): Promise<M>;
}