Interface FormDefinition<T, E, JSON>

interface FormDefinition<
    T = any,
    E extends object = any,
    JSON extends Record<string, any> = any,
> {
    rxapFormGroup: RxapFormGroup<T, E>;
    rxapMetadata: FormDefinitionMetadata;
    getSubmitValue(): JSON;
    rxapReuse(): void;
    toJSON(): JSON;
}

Type Parameters

  • T = any
  • E extends object = any
  • JSON extends Record<string, any> = any

Properties

rxapFormGroup: RxapFormGroup<T, E>

used to access the form definition metadata type save

Methods