UNPKG

@botonic/plugin-flow-builder

Version:

Use Flow Builder to show your contents

17 lines (16 loc) 455 B
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[]; }; }