UNPKG

@rajkrajpj/cultivate-ui-library

Version:

A modern, type-safe, accessible React component library for fintech investor forms. Build complete investor forms in minutes with zero configuration, supporting multiple regulations (RegA+, RegD, RegCF) and investor types.

8 lines (7 loc) 408 B
import { InvestorFormData } from '../types/InvestorFormData'; /** * Merges form data between wizard steps, ensuring all fields are preserved * This utility handles the complex merging logic that would otherwise need to be * implemented by every consumer of the library */ export declare const mergeInvestorFormData: (prev: Partial<InvestorFormData>, next: Partial<InvestorFormData>) => InvestorFormData;