UNPKG

@yext/chat-headless

Version:

A state manager library powered by Redux for Yext Chat integrations

10 lines (8 loc) 263 B
import { ChatEventClient } from "./ChatEventClient"; import { ChatHttpClient } from "./ChatHttpClient"; /** * A client that can be used to process user messages and provide responses. * * @public */ export type ChatClient = ChatHttpClient | ChatEventClient;