Files
smartsocket/ts/interfaces/connection.ts

11 lines
180 B
TypeScript
Raw Normal View History

2019-11-07 00:26:47 +01:00
export interface IRequestAuthPayload {
2022-01-19 15:34:52 +01:00
serverAlias: string;
2019-11-08 17:11:41 +01:00
}
2020-09-24 18:04:11 +00:00
export type TConnectionStatus =
| 'new'
| 'connecting'
| 'connected'
| 'disconnecting'
| 'disconnected';