interface ModuleContext {
    import: ModuleImport & (path: string) => Promise<any>;
    [key: string]: any;
    [key: number]: any;
    [key: symbol]: any;
}

Hierarchy (View Summary)

Indexable

  • [key: string]: any
  • [key: number]: any
  • [key: symbol]: any

Properties

Properties

import: ModuleImport & (path: string) => Promise<any>