UNPKG

@hadyfayed/filament-workflow-canvas

Version:

Visual workflow builder and canvas component for Filament applications

19 lines 518 B
import { FC } from 'react'; interface Rule { source_field: string; target_field: string; required: boolean; } interface AnalyticsNodePanelProps { config: { driver?: string; async?: boolean; fail_on_error?: boolean; event_name_mapping?: string; transform_rules?: Rule[]; }; updateConfig: (path: string, value: any) => void; } export declare const AnalyticsNodePanel: FC<AnalyticsNodePanelProps>; export {}; //# sourceMappingURL=AnalyticsNodePanel.d.ts.map