@botonic/plugin-flow-builder
Version:
Botonic plugin for **Hubtype Flow Builder**: run and bridge flow-driven logic from bots on the **current** line.
10 lines (9 loc) • 343 B
TypeScript
import type { BotonicContext } from '@botonic/core';
import type { HtFlowBuilderData } from '../content-fields/hubtype-fields/index';
declare class FlowClient {
botonicContext: BotonicContext;
jsonVersion: string;
constructor(botonicContext: BotonicContext);
getFlow(): Promise<HtFlowBuilderData>;
}
export default FlowClient;