interface
LiveValidationOptions
Choose the exact content locale and cancellation signal for a live validation request.
Request options
| Property | Type | Description |
|---|---|---|
locale | Locale | Optional. Check one configured content locale; omission uses the default locale. "all" and locale fallback are not supported. |
signal | AbortSignal | Optional. Cancel a request when input changes, the form closes, or a newer check replaces it. |
headers | HeadersInit | | Optional. Additional headers for this request, using the SDK’s normal request behavior. |
keepalive | boolean | Optional. Forward the Fetch keepalive option. Live form checks normally use cancellation instead of continuing after navigation. |
Full signature
interface LiveValidationOptions<Locale extends string = string> { ... }