UNPKG

@microsoft/windows-admin-center-sdk

Version:

Microsoft - Windows Admin Center Shell

16 lines (14 loc) 565 B
import { RpcInboundClient } from '../rpc-inbound-client'; import { RpcShellNavigateKey } from './rpc-shell-navigate-model'; export class RpcShellNavigateClient { /** * The shell navigate command. * * @param data the shell naviage object. * @return Promise<RpcShellNavigateResult> the promise object of shell navigate result. */ static shellNavigate(rpc, data) { return RpcInboundClient.call(rpc, RpcShellNavigateKey.command, RpcShellNavigateKey.version, data); } } //# sourceMappingURL=rpc-shell-navigate-client.js.map