UNPKG

@botonic/plugin-flow-builder

Version:

Use Flow Builder to show your contents

13 lines (11 loc) 343 B
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[] } }