Interface Validation<Plugin>

The pending validation descriptor.

interface Validation<Plugin> {
    abortController: null | AbortController;
    rootField: Field<any, Plugin>;
}

Type Parameters

  • Plugin = any

    The plugin injected into the field.

Properties

abortController: null | AbortController

The abort controller associated with the pending async validation, or null if the validation is synchronous.

rootField: Field<any, Plugin>

The field where the validation was triggered.