Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
microsoft
GitHub Repository: microsoft/vscode
Path: blob/main/test/automation/src/index.ts
3520 views
1
/*---------------------------------------------------------------------------------------------
2
* Copyright (c) Microsoft Corporation. All rights reserved.
3
* Licensed under the MIT License. See License.txt in the project root for license information.
4
*--------------------------------------------------------------------------------------------*/
5
6
export * from './activityBar';
7
export * from './application';
8
export * from './code';
9
export * from './debug';
10
export * from './editor';
11
export * from './editors';
12
export * from './explorer';
13
export * from './extensions';
14
export * from './keybindings';
15
export * from './logger';
16
export * from './peek';
17
export * from './problems';
18
export * from './quickinput';
19
export * from './quickaccess';
20
export * from './scm';
21
export * from './search';
22
export * from './settings';
23
export * from './statusbar';
24
export * from './terminal';
25
export * from './viewlet';
26
export * from './localization';
27
export * from './workbench';
28
export * from './task';
29
export { getDevElectronPath, getBuildElectronPath, getBuildVersion } from './electron';
30
31