mirror of
https://gitee.com/dromara/mayfly-go
synced 2025-11-03 16:00:25 +08:00
12 lines
200 B
TypeScript
12 lines
200 B
TypeScript
|
|
export interface TerminalExpose {
|
||
|
|
/** 连接 */
|
||
|
|
init(width: number, height: number, force: boolean): void;
|
||
|
|
|
||
|
|
/** 短开连接 */
|
||
|
|
close(): void;
|
||
|
|
|
||
|
|
blur(): void;
|
||
|
|
|
||
|
|
focus(): void;
|
||
|
|
}
|