UNPKG

@botforge/widget

Version:

Official BotForge chatbot widget for easy integration into any website or web application

11 lines (10 loc) 307 B
import { BotForgeConfig, BotForgeAPI } from "../types"; declare global { interface Window { BotForge: { initBotForge: (config: BotForgeConfig) => BotForgeAPI; version: string; }; } } export declare const initBotForge: (config: BotForgeConfig) => BotForgeAPI;