@botonic/plugin-flow-builder
Version:
Use Flow Builder to show your contents
11 lines (10 loc) • 437 B
TypeScript
/// <reference types="react" />
import { ActionRequest } from '@botonic/react';
import { ContentFieldsBase } from './content-fields-base';
import { HtVideoNode } from './hubtype-fields';
export declare class FlowVideo extends ContentFieldsBase {
src: string;
static fromHubtypeCMS(component: HtVideoNode, locale: string): FlowVideo;
trackFlow(request: ActionRequest): Promise<void>;
toBotonic(id: string): JSX.Element;
}