UNPKG

@microsoft/windows-admin-center-sdk

Version:

Microsoft - Windows Admin Center Shell

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