mirror of
https://code.equilibrium.co.ao/ITO/doneit-web.git
synced 2026-04-19 04:57:52 +00:00
21 lines
410 B
TypeScript
21 lines
410 B
TypeScript
export interface wsCallbacksParams {
|
|
type: 'Offline' | 'Online' | 'Open' | 'Onmessage' | 'reConnect',
|
|
funx: Function
|
|
runOnces?: boolean
|
|
requestId?: string
|
|
key?: string
|
|
order?: number
|
|
}
|
|
|
|
|
|
export interface msgQueue {
|
|
message: object,
|
|
requestId: string,
|
|
loginRequired: boolean
|
|
}
|
|
|
|
export interface send {
|
|
message: object
|
|
requestId?: string
|
|
loginRequired?: boolean
|
|
} |