Type AliasNestedFormElementValueChangeHandler<T>

NestedFormElementValueChangeHandler<T>: ValueChangeHandler<{
    deleteSection?: boolean;
    executedLookups: ExecutedLookupValue | ((currentExecutedLookups: ExecutedLookupValue) => ExecutedLookupValue);
    sectionState: SectionState | ((currentSectionState: SectionState) => SectionState);
    value?: T | ((existingValue?: T) => T | undefined);
}>

Type Parameters

  • T = unknown