@microsoft/windows-admin-center-sdk
Version:
Microsoft - Windows Admin Center Shell
16 lines (15 loc) • 637 B
TypeScript
import { Rpc } from '../rpc';
import { RpcOutbound } from '../rpc-outbound';
import { RpcAzureOperationResult } from './rpc-azure-model';
export declare class RpcAzureResponseClient {
/**
* The Rpc Azure response command.
*
* @param rpc the rpc service.
* @param data the azure operation result object.
* @param outbound the outbound channel to call. @optional
* @return Promise<void> the promise object.
*/
static azureResponse(rpc: Rpc, data: RpcAzureOperationResult): Promise<void>;
static azureResponse(rpc: Rpc, data: RpcAzureOperationResult, outbound?: RpcOutbound): Promise<void>;
}