UNPKG

@microsoft/windows-admin-center-sdk

Version:

Microsoft - Windows Admin Center Shell

14 lines (13 loc) 461 B
import { Rpc } from '../rpc'; import { RpcUpdateData } from './rpc-update-data-model'; export declare class RpcUpdateDataClient { /** * The update data command. * * @param name the module name. * @param subName the sub name of module. * @param data the update data object. * @return Promise<void> the promise object. */ static updateData(rpc: Rpc, name: string, subName: string, data: RpcUpdateData): Promise<void>; }