microsoft/vscode-react-native

Public

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

CodeCommitsIssuesPull requestsActionsInsightsSecurity
2849af4fe22a4759788e84e634da2698d9868030

Branches

Tags

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

Clone

HTTPS

Download ZIP

src/debugger/nodeDebugAdapter.d.ts

52lines · modeblame

40e4b177Patricio Beltran10 years ago1// Copyright (c) Microsoft Corporation. All rights reserved.
2// Licensed under the MIT license. See LICENSE file in the project root for details.
3
4// These typings do not reflect the typings as intended to be used
5// but rather as they exist in truth, so we can reach into the internals
6// and access what we need.
7declare module VSCodeDebugAdapter {
8class DebugSession {
9public static run: Function;
10public sendEvent(event: VSCodeDebugAdapter.InitializedEvent): void;
11public start(input: any, output: any): void;
12public launchRequest(response: any, args: any): void;
13public attachRequest(response: any, args: any): void;
14public disconnectRequest(response: any, args: any): void;
15}
16class InitializedEvent {
17constructor();
18}
19class OutputEvent {
20constructor(message: string, destination?: string);
21}
22class TerminatedEvent {
23constructor();
24}
25}
26
27declare class SourceMaps {
28public _sourceToGeneratedMaps: {};
29public _generatedToSourceMaps: {};
30public _allSourceMaps: {};
31}
32
33declare class NodeDebugSession extends VSCodeDebugAdapter.DebugSession {
34public _sourceMaps: SourceMaps;
35}
36
37interface ILaunchRequestArgs {
38platform: string;
39target?: string;
40internalDebuggerPort?: any;
41iosRelativeProjectPath?: string;
42args: string[];
43logCatArguments: any;
44program: string;
45}
46
47interface IAttachRequestArgs {
299b0557Patricio Beltran10 years ago48internalDebuggerPort?: any;
40e4b177Patricio Beltran10 years ago49args: string[];
299b0557Patricio Beltran10 years ago50program: string;
51platform: string;
40e4b177Patricio Beltran10 years ago52}