@botonic/plugin-flow-builder
Version:
Botonic plugin for **Hubtype Flow Builder**: run and bridge flow-driven logic from bots on the **current** line.
17 lines (16 loc) • 455 B
TypeScript
import { HtBaseNode, HtNodeLink } from './common';
import { HtNodeWithContentType } from './node-types';
export interface HtWebviewExits {
id: string;
name: string;
target?: HtNodeLink;
}
export interface HtWebviewNode extends HtBaseNode {
type: HtNodeWithContentType.WEBVIEW;
content: {
webview_target_id: string;
webview_name: string;
webview_component_name: string;
exits: HtWebviewExits[];
};
}