microsoft/vscode-react-native

Public

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

CodeCommitsIssuesPull requestsActionsInsightsSecurity
dev/v-zhenyuan/update-parameters

Branches

Tags

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

Clone

HTTPS

Download ZIP

src/typings/debugger/sourceMapsCombinator.d.ts

10lines · modecode

1// Type definitions for source-map-resolve
2
3declare module "source-map-resolve" {
4 export function resolveSync(
5 code: string | null,
6 codeUrl: string,
7 read: Function,
8 options?: any,
9 ): any;
10}
11