mirror of
https://gitee.com/dromara/mayfly-go
synced 2025-11-16 06:10:24 +08:00
7 lines
109 B
TypeScript
7 lines
109 B
TypeScript
|
|
export enum TerminalStatus {
|
||
|
|
Error = -1,
|
||
|
|
NoConnected = 0,
|
||
|
|
Connected = 1,
|
||
|
|
Disconnected = 2,
|
||
|
|
}
|