@microsoft/windows-admin-center-sdk
Version:
Microsoft - Windows Admin Center Shell
41 lines (40 loc) • 708 B
TypeScript
import { RpcBaseData } from '../rpc-base';
/**
* RPC seek request name and version.
*/
export declare class RpcSeekKey {
static command: string;
static version: string;
}
/**
* RPC seek mode.
*/
export declare enum RpcSeekMode {
/**
* Create new inbound rpc on the shell.
*/
Create = 0,
/**
* Delete existing inbound rpc on the shell.
*/
Delete = 1
}
export interface RpcSeek extends RpcBaseData {
/**
* Type of seek request.
*/
mode: RpcSeekMode;
}
/**
* Rpc Seek result.
*/
export interface RpcSeekResult {
/**
* name of module.
*/
name: string;
/**
* sub name of frame instance.
*/
subName: string;
}