UNPKG

@botonic/plugin-flow-builder

Version:

Use Flow Builder to show your contents

14 lines (13 loc) 539 B
/// <reference types="react" /> import { ActionRequest } from '@botonic/react'; import { FlowBuilderApi } from '../api'; import { ContentFieldsBase } from './content-fields-base'; import { HtGoToFlow } from './hubtype-fields'; export declare class FlowGoToFlow extends ContentFieldsBase { flowTargetId: string; flowTargetName: string; targetId: string; static fromHubtypeCMS(component: HtGoToFlow, cmsApi: FlowBuilderApi): FlowGoToFlow; trackFlow(request: ActionRequest): Promise<void>; toBotonic(): JSX.Element; }