Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
microsoft
GitHub Repository: microsoft/vscode
Path: blob/main/src/vs/sessions/sessions.web.main.internal.ts
13383 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
// This file is the web embedder entry point for the Sessions workbench.
7
// It mirrors workbench.web.main.internal.ts but loads the sessions entry
8
// point and factory instead of the standard workbench ones.
9
10
import './sessions.web.main.js';
11
import { create } from './browser/web.factory.js';
12
import { URI } from '../base/common/uri.js';
13
import { Event, Emitter } from '../base/common/event.js';
14
import { Disposable } from '../base/common/lifecycle.js';
15
import { LogLevel } from '../platform/log/common/log.js';
16
17
export {
18
create,
19
URI,
20
Event,
21
Emitter,
22
Disposable,
23
LogLevel,
24
};
25
26