@dannyfranca/any-chat
Version:
Universal, extensible and improved JS API for Chats, like TawkTo, Jivochat, and others.
18 lines (16 loc) • 443 B
text/typescript
import State from './State'
import EventMapValue from './EventMapValue'
export default interface EventMap {
load: EventMapValue
stateChange?: EventMapValue<State>
preSubmit?: EventMapValue<object>
offlineSubmit?: EventMapValue<object>
open?: EventMapValue
close?: EventMapValue
start?: EventMapValue
end?: EventMapValue
hidden?: EventMapValue
callStart?: EventMapValue
callEnd?: EventMapValue
resize?: EventMapValue
}