UNPKG

devbots

Version:

package for embedding your preprompted devbot chat widget into your applications

13 lines (11 loc) 266 B
interface DevBotProps { apiKey: string; title: string; } declare global { interface Window { DevBot: new (apiKey: string, title: string) => void; } } declare function DevBot({ apiKey, title }: DevBotProps): null; export { DevBot };