UNPKG

@microsoft/windows-admin-center-sdk

Version:

Microsoft - Windows Admin Center Shell

12 lines (11 loc) 446 B
import { Rpc } from '../rpc'; import { RpcForwardReportData, RpcForwardResponse } from './rpc-forward-model'; export declare class RpcForwardDownClient { /** * The Rpc forward down command. * * @param data the forward report data object. * @return Promise<RpcForwardResponse<T>> the promise object of forward response. */ static forward<T>(rpc: Rpc, data: RpcForwardReportData): Promise<RpcForwardResponse<T>>; }