UNPKG

@microsoft/windows-admin-center-sdk

Version:

Microsoft - Windows Admin Center Shell

16 lines (14 loc) 531 B
import { RpcInboundClient } from '../rpc-inbound-client'; import { RpcForwardUpKey } from './rpc-forward-model'; export class RpcForwardUpClient { /** * The forward up client call. * * @param data the forward report data object. * @return Promise<RpcForwardResponse> the promise object with forward response. */ static forward(rpc, data) { return RpcInboundClient.call(rpc, RpcForwardUpKey.command, RpcForwardUpKey.version, data); } } //# sourceMappingURL=rpc-forward-up-client.js.map