UNPKG

@botonic/plugin-flow-builder

Version:

Botonic plugin for **Hubtype Flow Builder**: run and bridge flow-driven logic from bots on the **current** line.

13 lines (12 loc) 445 B
import { BotonicContext } from '@botonic/core'; import type { FlowContent } from '../content-fields'; import type { ContentFilter } from '../types'; interface ContentFilterExecutorOptions { filters: ContentFilter[]; } export declare class ContentFilterExecutor { private filters; constructor(options: ContentFilterExecutorOptions); filter(botonicContext: BotonicContext, content: FlowContent): Promise<FlowContent>; } export {};