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