UNPKG

@microsoft/windows-admin-center-sdk

Version:

Microsoft - Windows Admin Center Shell

15 lines (14 loc) 609 B
import { Rpc } from '../rpc'; import { RpcObservableServer } from '../rpc-observable-server'; import { RpcObservableCopilotError, RpcObservableCopilotRequest, RpcObservableCopilotResult } from './rpc-observable-copilot-model'; /** * Iframe to Shell pair, the receiving/Shell port. */ export declare class RpcObservableCopilotServer extends RpcObservableServer<RpcObservableCopilotRequest, RpcObservableCopilotResult, RpcObservableCopilotError> { /** * Initializes a new instance of the RpcObservableCopilotServer class. * * @param rpc the rpc object. */ constructor(rpc: Rpc); }