UNPKG

@botonic/plugin-flow-builder

Version:

Use Flow Builder to show your contents

10 lines (9 loc) 251 B
import { HtBaseNode } from './common'; import { HtNodeWithContentType } from './node-types'; export interface HtGoToFlow extends HtBaseNode { id: string; type: HtNodeWithContentType.GO_TO_FLOW; content: { flow_id: string; }; }