UNPKG

reboost

Version:

A super fast dev server for rapid web development

9 lines (8 loc) 334 B
export interface Importer { All(mod: any): any; Default(mod: any, sourcePath: string, importerPath: string): any; Dynamic(toImport: string, importerPath: string): any; Member(mod: any, member: string, sourcePath: string, importerPath: string): any; } declare const importer: Importer; export default importer;