microsoft/vscode-react-native

Public

mirrored from https://github.com/microsoft/vscode-react-nativeAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
3806187c0fbdfb47dd51f50f84fe4ef7642eef3d

Branches

Tags

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

Clone

HTTPS

Download ZIP

src/typings/module.d.ts

8lines · modecode

1declare module "module" {
2 class Module {
3 constructor(filename: string);
4 require(filename: string): any;
5 }
6
7 export = Module;
8}
9