@sussudio/platform
Version:
Internal APIs for VS Code's service injection the base services.
22 lines (20 loc) • 1.08 kB
text/typescript
/*---------------------------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for license information.
*--------------------------------------------------------------------------------------------*/
import { Disposable } from '@sussudio/base/common/lifecycle.mjs';
import { ILifecycleMainService } from '../../lifecycle/electron-main/lifecycleMainService.mjs';
import { IUserDataProfilesMainService } from './userDataProfile.mjs';
import { IWindowsMainService } from '../../windows/electron-main/windows.mjs';
export declare class UserDataProfilesHandler extends Disposable {
private readonly userDataProfilesService;
private readonly windowsMainService;
constructor(
lifecycleMainService: ILifecycleMainService,
userDataProfilesService: IUserDataProfilesMainService,
windowsMainService: IWindowsMainService,
);
private unsetProfileForWorkspace;
private getWorkspace;
private cleanUpEmptyWindowAssociations;
}