Files
doneit-web/src/app/models/rochet-chat-cliente-service.ts
T

14 lines
259 B
TypeScript
Raw Normal View History

2022-01-10 09:35:17 +01:00
export interface wsCallbacksParams {
type: 'Offline' | 'Online' | 'Open' | 'Onmessage',
funx: Function
options?: {
runOnces?: boolean
}
requestId?: string
}
export interface msgQueue {
message: object,
requestId: string
}