microsoft/vscode-react-native

Public

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

CodeCommitsIssuesPull requestsActionsInsightsSecurity
5b782b052bb35ad8372c07dd4c4529a79919fa31

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