microsoft/vscode-react-native

Public

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

CodeCommitsIssuesPull requestsActionsInsightsSecurity
f6f54243734f7511bbef522c4f2cca6de2e5aaaa

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}