@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 { HtImageNode } from './hubtype-fields';
export declare class FlowImage extends ContentFieldsBase {
src: string;
code: string;
static fromHubtypeCMS(component: HtImageNode, locale: string): FlowImage;
toBotonic(id: string): JSX.Element;
}