11 lines
694 B
TypeScript
11 lines
694 B
TypeScript
|
|
/*---------------------------------------------------------------------------------------------
|
||
|
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||
|
|
* Licensed under the MIT License. See License.txt in the project root for license information.
|
||
|
|
*--------------------------------------------------------------------------------------------*/
|
||
|
|
|
||
|
|
export enum ExpServiceTelemetryNames {
|
||
|
|
// these are defined (but not exported) in the code for the tas client, currently here:
|
||
|
|
// https://github.com/microsoft/tas-client/blob/75f8895b15ef5696653cbee134ccae24477b0b94/vscode-tas-client/src/vscode-tas-client/VSCodeTasClient.ts#L67
|
||
|
|
featuresTelemetryPropertyName = 'VSCode.ABExp.Features',
|
||
|
|
}
|