Skip to content

Commit 416f071

Browse files
committed
(maint) Add new ConnectionStatus enumerations
This adds 'Failed','Stopped', and 'Initializing` to the `ConnectionStatus` enum.
1 parent c04dd84 commit 416f071

File tree

1 file changed

+11
-1
lines changed

1 file changed

+11
-1
lines changed

src/interfaces.ts

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,23 @@
22

33
// Only add simple interfaces here. No import's allowed
44

5+
// Only add simple interfaces here. No import's allowed
6+
// Only add simple interfaces here. No import's allowed
7+
// Only add simple interfaces here. No import's allowed
8+
// Only add simple interfaces here. No import's allowed
9+
// Only add simple interfaces here. No import's allowed
10+
// Only add simple interfaces here. No import's allowed
11+
// Only add simple interfaces here. No import's allowed
512
export enum ConnectionStatus {
613
NotStarted,
714
Starting,
815
RunningLoading,
916
RunningLoaded,
1017
Stopping,
11-
Failed
18+
Failed,
19+
Stopped,
20+
Initializing,
21+
InitializationComplete
1222
}
1323

1424
export enum ConnectionType {

0 commit comments

Comments
 (0)