UNPKG

@botonic/core

Version:
10 lines (9 loc) 291 B
import { BotContext } from './models'; interface RunPluginArgs { botContext: BotContext; mode: PluginMode; response?: string | null; } type PluginMode = 'pre' | 'post'; export declare function runPlugins({ botContext, mode, response, }: RunPluginArgs): Promise<void>; export {};