@botonic/plugin-flow-builder
Version:
Use Flow Builder to show your contents
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[];
};
}