@microsoft/windows-admin-center-sdk
Version:
Microsoft - Windows Admin Center Shell
16 lines (14 loc) • 438 B
JavaScript
import { RpcInboundClient } from '../rpc-inbound-client';
import { RpcLogKey } from './rpc-log-model';
export class RpcLogClient {
/**
* The log command.
*
* @param data the RpcLogRecord object.
* @return Promise<void> the promise object.
*/
static log(rpc, data) {
return RpcInboundClient.call(rpc, RpcLogKey.command, RpcLogKey.version, data);
}
}
//# sourceMappingURL=rpc-log-client.js.map