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