UNPKG

@botonic/plugin-flow-builder

Version:

Use Flow Builder to show your contents

11 lines (10 loc) 292 B
import { HtBaseNode } from './common'; import { HtNodeWithContentType } from './node-types'; export interface HtBotActionNode extends HtBaseNode { id: string; type: HtNodeWithContentType.BOT_ACTION; content: { payload_id: string; payload_params?: string; }; }