UNPKG

@microsoft/windows-admin-center-sdk

Version:

Microsoft - Windows Admin Center Shell

16 lines (14 loc) 514 B
import { RpcInboundClient } from '../rpc-inbound-client'; import { RpcSettingsKey } from './rpc-settings-model'; export class RpcSettingsClient { /** * The settings request command. * * @param data the settings object. * @return Promise<RpcSettingsResult> the promise object of settings result. */ static settings(rpc, data) { return RpcInboundClient.call(rpc, RpcSettingsKey.command, RpcSettingsKey.version, data); } } //# sourceMappingURL=rpc-settings-client.js.map