11 строки
663 B
TypeScript
11 строки
663 B
TypeScript
/*---------------------------------------------------------------------------------------------
|
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
* Licensed under the MIT License. See License.txt in the project root for license information.
|
|
*--------------------------------------------------------------------------------------------*/
|
|
|
|
declare module 'vscode-extension-telemetry' {
|
|
export default class TelemetryReporter {
|
|
constructor(extensionId: string, extensionVersion: string, key: string);
|
|
sendTelemetryEvent(eventName: string, properties?: { [key: string]: string }, measures?: { [key: string]: number }): void;
|
|
}
|
|
} |