forked from DonJayamanne/pythonVSCode
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtypes.ts
More file actions
25 lines (16 loc) · 1010 Bytes
/
types.ts
File metadata and controls
25 lines (16 loc) · 1010 Bytes
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
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
'use strict';
import { DebugAdapterDescriptorFactory, DebugAdapterTrackerFactory, DebugConfigurationProvider } from 'vscode';
export const IDebugConfigurationService = Symbol('IDebugConfigurationService');
export interface IDebugConfigurationService extends DebugConfigurationProvider {}
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 enum PythonPathSource {
launchJson = 'launch.json',
settingsJson = 'settings.json',
}