Type alias FormSchema<Values, Err>

FormSchema<Values, Err>: Nominal<"FormSchema"> & {
    readonly [K in keyof Values]: GenericFieldDescriptor<Values[K], Err>
}

Description of a form. Used to interact with Formts API and point to specific form fields. Created using FormSchemaBuilder class.

Type Parameters

  • Values extends object

  • Err

Generated using TypeDoc