UNPKG

@microsoft/windows-admin-center-sdk

Version:

Microsoft - Windows Admin Center Shell

17 lines (15 loc) 568 B
import { RpcInboundClient } from '../rpc-inbound-client'; import { RpcSeekKey } from './rpc-seek-model'; export class RpcSeekClient { /** * The seek command. * * @param rpcManager the rpc manager instance. * @param data the seek object. * @return Promise<RpcSeekResult> the promise object of seek result. */ static seek(rpcManager, data) { return RpcInboundClient.callInbound(rpcManager.rpcChannel, rpcManager.rpcInbound, RpcSeekKey.command, RpcSeekKey.version, data); } } //# sourceMappingURL=rpc-seek-client.js.map