forked from microsoft/vscode-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtypes.ts
More file actions
71 lines (58 loc) · 2.36 KB
/
types.ts
File metadata and controls
71 lines (58 loc) · 2.36 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
'use strict';
import { Readable } from 'stream';
import {
CancellationToken,
DebugAdapterDescriptorFactory,
DebugAdapterTrackerFactory,
DebugConfigurationProvider,
Disposable,
WorkspaceFolder,
} from 'vscode';
import { InputStep, MultiStepInput } from '../../common/utils/multiStepInput';
import { DebugConfigurationArguments } from '../types';
export const IDebugConfigurationService = Symbol('IDebugConfigurationService');
export interface IDebugConfigurationService extends DebugConfigurationProvider {}
export const IDebuggerBanner = Symbol('IDebuggerBanner');
export interface IDebuggerBanner {
initialize(): void;
}
export const IDebugConfigurationProvider = Symbol('IDebugConfigurationProvider');
export type DebugConfigurationState = {
config: Partial<DebugConfigurationArguments>;
folder?: WorkspaceFolder;
token?: CancellationToken;
};
export interface IDebugConfigurationProvider {
buildConfiguration(
input: MultiStepInput<DebugConfigurationState>,
state: DebugConfigurationState,
): Promise<InputStep<DebugConfigurationState> | void>;
}
export enum DebugConfigurationType {
launchFile = 'launchFile',
remoteAttach = 'remoteAttach',
launchDjango = 'launchDjango',
launchFastAPI = 'launchFastAPI',
launchFlask = 'launchFlask',
launchModule = 'launchModule',
launchPyramid = 'launchPyramid',
pidAttach = 'pidAttach',
}
export enum PythonPathSource {
launchJson = 'launch.json',
settingsJson = 'settings.json',
}
export const IDebugAdapterDescriptorFactory = Symbol('IDebugAdapterDescriptorFactory');
export interface IDebugAdapterDescriptorFactory extends DebugAdapterDescriptorFactory {}
export const IDebugSessionLoggingFactory = Symbol('IDebugSessionLoggingFactory');
export interface IDebugSessionLoggingFactory extends DebugAdapterTrackerFactory {}
export const IOutdatedDebuggerPromptFactory = Symbol('IOutdatedDebuggerPromptFactory');
export interface IOutdatedDebuggerPromptFactory extends DebugAdapterTrackerFactory {}
export const IProtocolParser = Symbol('IProtocolParser');
export interface IProtocolParser extends Disposable {
connect(stream: Readable): void;
once(event: string | symbol, listener: Function): this;
on(event: string | symbol, listener: Function): this;
}