UNPKG

@moveo-ai/web-widget

Version:

Client side library to load the moveo chat widget and connect it with your agent

13 lines (10 loc) 256 B
import { openChat } from './functions/toggleChat'; export const agentEvents = []; export const agent = { on: (event, handler) => { agentEvents.push({ event, handler }); }, open: (timeout) => { setTimeout(() => openChat(), timeout); }, };