Files
mayfly-go/mayfly_go_web/src/components/terminal-rdp/index.ts

12 lines
200 B
TypeScript
Raw Normal View History

export interface TerminalExpose {
/** 连接 */
init(width: number, height: number, force: boolean): void;
/** 短开连接 */
close(): void;
blur(): void;
focus(): void;
}