smartsocket/ts/interfaces/connection.ts

12 lines
195 B
TypeScript
Raw Normal View History

2019-11-06 23:26:47 +00:00
export interface IRequestAuthPayload {
2022-01-19 14:34:52 +00:00
serverAlias: string;
2019-11-08 16:11:41 +00:00
}
2020-09-24 18:04:11 +00:00
export type TConnectionStatus =
| 'new'
| 'connecting'
| 'connected'
| 'disconnecting'
2022-01-20 17:33:46 +00:00
| 'disconnected'
| 'timedOut';