@botonic/plugin-flow-builder
Version:
Use Flow Builder to show your contents
12 lines (11 loc) • 304 B
TypeScript
import { HtBaseNode } from './common';
import { HtNodeWithContentType } from './node-types';
interface SmartIntent {
title: string;
description: string;
}
export interface HtSmartIntentNode extends HtBaseNode {
type: HtNodeWithContentType.SMART_INTENT;
content: SmartIntent;
}
export {};