UNPKG

@sussudio/platform

Version:

Internal APIs for VS Code's service injection the base services.

14 lines (12 loc) 743 B
/*--------------------------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. * Licensed under the MIT License. See License.txt in the project root for license information. *--------------------------------------------------------------------------------------------*/ import { IEnvironmentService } from '../../environment/common/environment.mjs'; import { IFileService } from '../../files/common/files.mjs'; import { IStorageService } from '../../storage/common/storage.mjs'; export declare function getServiceMachineId( environmentService: IEnvironmentService, fileService: IFileService, storageService: IStorageService | undefined, ): Promise<string>;