UNPKG

botui

Version:

Build customizable conversational UIs and bots

7 lines (6 loc) 236 B
import type { Block } from './block.js'; export declare type Plugin = (block: Block) => Block; export declare function pluginManager(): { registerPlugin: (plugin: Plugin) => Plugin[]; runWithPlugins: (input: Block) => Block; };