microsoft/vscode-react-native

Public

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

CodeCommitsIssuesPull requestsActionsInsightsSecurity
4e7a6f0ea8877d0ec68aa871b8597e21af9cd6aa

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