sussudio
Version:
An unofficial VS Code Internal API
15 lines (14 loc) • 1.26 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 { ILogService } from "../../log/common/log.mjs";
import { IUserDataProfilesService } from "../../userDataProfile/common/userDataProfile.mjs";
import { IUriIdentityService } from "../../uriIdentity/common/uriIdentity.mjs";
import { ITelemetryService } from "../../telemetry/common/telemetry.mjs";
import { AbstractExtensionsProfileScannerService } from "../common/extensionsProfileScannerService.mjs";
import { IFileService } from "../../files/common/files.mjs";
import { INativeEnvironmentService } from "../../environment/common/environment.mjs";
export declare class ExtensionsProfileScannerService extends AbstractExtensionsProfileScannerService {
constructor(environmentService: INativeEnvironmentService, fileService: IFileService, userDataProfilesService: IUserDataProfilesService, uriIdentityService: IUriIdentityService, telemetryService: ITelemetryService, logService: ILogService);
}