11 lines
182 B
TypeScript
11 lines
182 B
TypeScript
export interface IRequestAuthPayload {
|
|
serverShortId: string;
|
|
}
|
|
|
|
export type TConnectionStatus =
|
|
| 'new'
|
|
| 'connecting'
|
|
| 'connected'
|
|
| 'disconnecting'
|
|
| 'disconnected';
|