UNPKG

@botonic/plugin-flow-builder

Version:

Use Flow Builder to show your contents

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