@sussudio/platform
Version:
Internal APIs for VS Code's service injection the base services.
22 lines (20 loc) • 871 B
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 { IFileService } from '../../files/common/files.mjs';
export declare function resolveCommonProperties(
fileService: IFileService,
release: string,
hostname: string,
arch: string,
commit: string | undefined,
version: string | undefined,
machineId: string | undefined,
isInternalTelemetry: boolean,
installSourcePath: string,
product?: string,
): Promise<{
[name: string]: string | boolean | undefined;
}>;
export declare function verifyMicrosoftInternalDomain(domainList: readonly string[]): boolean;