smartsocket/ts/interfaces/connection.ts

6 lines
170 B
TypeScript
Raw Normal View History

2019-11-06 23:26:47 +00:00
export interface IRequestAuthPayload {
serverShortId: string;
2019-11-08 16:11:41 +00:00
}
2019-11-08 17:41:08 +00:00
export type TConnectionStatus = 'new' | 'connecting' | 'connected' | 'disconnecting' | 'disconnected';