@microsoft/windows-admin-center-sdk
Version:
Microsoft - Windows Admin Center Shell
25 lines (24 loc) • 1.08 kB
TypeScript
import { Observable } from 'rxjs';
import { Rpc } from '../rpc';
import { RpcObservableClient } from '../rpc-observable-client';
import { RpcOutbound } from '../rpc-outbound';
import { RpcObservableCopilotConfigRequest, RpcObservableCopilotError, RpcObservableCopilotResult } from './rpc-observable-copilot-model';
/**
* Shell to Iframe pair, the sending/Shell port.
*/
export declare class RpcObservableCopilotConfigClient extends RpcObservableClient<RpcObservableCopilotConfigRequest, RpcObservableCopilotResult, RpcObservableCopilotError> {
/**
* Initializes a new instance of the RpcObservableCopilotConfigClient class.
*
* @param rpc the rpc object.
*/
constructor(rpc: Rpc);
/**
* The Copilot config command.
*
* @param request the Rpc Copilot config object.
* @param outbound the Rpc outbound channel object.
* @return Observable<RpcObservableCopilotResult> the observable object.
*/
config(request: RpcObservableCopilotConfigRequest, outbound?: RpcOutbound): Observable<RpcObservableCopilotResult>;
}