UNPKG

@microsoft/windows-admin-center-sdk

Version:

Microsoft - Windows Admin Center Shell

16 lines (14 loc) 486 B
import { RpcInboundClient } from '../rpc-inbound-client'; import { RpcTelemetryKey } from './rpc-telemetry-model'; export class RpcTelemetryClient { /** * The telemetry command. * * @param data the RpcLogRecord object. * @return Promise<void> the promise object. */ static telemetry(rpc, data) { return RpcInboundClient.call(rpc, RpcTelemetryKey.command, RpcTelemetryKey.version, data); } } //# sourceMappingURL=rpc-telemetry-client.js.map