Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
microsoft
GitHub Repository: microsoft/vscode
Path: blob/main/src/vs/workbench/workbench.web.main.internal.ts
5239 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
// !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
7
//
8
// Do NOT change these exports in a way that something is removed unless
9
// intentional. These exports are used by web embedders and thus require
10
// an adoption when something changes.
11
//
12
// !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
13
14
import './workbench.web.main.js';
15
import { create, commands, env, window, workspace, logger } from './browser/web.factory.js';
16
import { Menu } from './browser/web.api.js';
17
import { URI } from '../base/common/uri.js';
18
import { Event, Emitter } from '../base/common/event.js';
19
import { Disposable } from '../base/common/lifecycle.js';
20
import { GroupOrientation } from './services/editor/common/editorGroupsService.js';
21
import { RemoteAuthorityResolverError, RemoteAuthorityResolverErrorCode } from '../platform/remote/common/remoteAuthorityResolver.js';
22
import { LogLevel } from '../platform/log/common/log.js';
23
24
export {
25
26
// Factory
27
create,
28
29
// Basic Types
30
URI,
31
Event,
32
Emitter,
33
Disposable,
34
GroupOrientation,
35
LogLevel,
36
RemoteAuthorityResolverError,
37
RemoteAuthorityResolverErrorCode,
38
39
// Facade API
40
env,
41
window,
42
workspace,
43
commands,
44
logger,
45
Menu
46
};
47
48