microsoft/vscode-react-native

Public

mirrored fromhttps://github.com/microsoft/vscode-react-nativeAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
1.5.1

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

src/typings/module.d.ts

11lines · modepreview

declare module "module" {
    class Module {
        static _nodeModulePaths(directory: string): string[];
        constructor(filename: string);
        require(filename: string): any;

        paths: string[];
    }

    export = Module;
}