mirror of
https://code.equilibrium.co.ao/ITO/doneit-web.git
synced 2026-04-20 21:35:50 +00:00
14 lines
259 B
TypeScript
14 lines
259 B
TypeScript
|
|
export interface wsCallbacksParams {
|
||
|
|
type: 'Offline' | 'Online' | 'Open' | 'Onmessage',
|
||
|
|
funx: Function
|
||
|
|
options?: {
|
||
|
|
runOnces?: boolean
|
||
|
|
}
|
||
|
|
requestId?: string
|
||
|
|
}
|
||
|
|
|
||
|
|
|
||
|
|
export interface msgQueue {
|
||
|
|
message: object,
|
||
|
|
requestId: string
|
||
|
|
}
|