@botonic/plugin-flow-builder
Version:
Botonic plugin for **Hubtype Flow Builder**: run and bridge flow-driven logic from bots on the **current** line.
12 lines (11 loc) • 368 B
TypeScript
import { HtButton } from './button';
import { HtBaseNode, HtTextLocale } from './common';
import { HtButtonStyle, HtNodeWithContentType } from './node-types';
export interface HtTextNode extends HtBaseNode {
type: HtNodeWithContentType.TEXT;
content: {
text: HtTextLocale[];
buttons_style?: HtButtonStyle;
buttons: HtButton[];
};
}