@botonic/plugin-flow-builder
Version:
Use Flow Builder to show your contents
12 lines (10 loc) • 338 B
text/typescript
import { HtBaseNode } from './common'
import { HtFunctionResult } from './function'
import { HtNodeWithContentType } from './node-types'
export interface HtChannelConditionalNode extends HtBaseNode {
type: HtNodeWithContentType.FUNCTION
content: {
action: string //'get-channel-type'
result_mapping: HtFunctionResult[]
}
}