smartsocket/ts/interfaces/connection.ts
2019-11-08 18:41:08 +01:00

6 lines
170 B
TypeScript

export interface IRequestAuthPayload {
serverShortId: string;
}
export type TConnectionStatus = 'new' | 'connecting' | 'connected' | 'disconnecting' | 'disconnected';