@microsoft/windows-admin-center-sdk
Version:
Microsoft - Windows Admin Center Shell
12 lines (11 loc) • 441 B
TypeScript
import { Rpc } from '../rpc';
import { RpcForwardReportData, RpcForwardResponse } from './rpc-forward-model';
export declare class RpcForwardUpClient {
/**
* The forward up client call.
*
* @param data the forward report data object.
* @return Promise<RpcForwardResponse> the promise object with forward response.
*/
static forward<T>(rpc: Rpc, data: RpcForwardReportData): Promise<RpcForwardResponse<T>>;
}