eCR Viewer
    Preparing search index...

    Interface RequireExtensions

    interface RequireExtensions {
        ".js": (module: Module, filename: string) => any;
        ".json": (module: Module, filename: string) => any;
        ".node": (module: Module, filename: string) => any;
        [key: string]: ((module: Module, filename: string) => any) | undefined;
    }

    Hierarchy (View Summary)

    • Dict<(module: Module, filename: string) => any>
      • RequireExtensions

    Indexable

    • [key: string]: ((module: Module, filename: string) => any) | undefined
    Index

    Properties

    Properties

    ".js": (module: Module, filename: string) => any
    ".json": (module: Module, filename: string) => any
    ".node": (module: Module, filename: string) => any