• Overview
@angular/forms/signals

Debouncer

Type Alias

A function that defines custom debounce logic for a field.

API

    
      type Debouncer<TValue, TPathKind extends PathKind = PathKind.Root> = (  context: FieldContext<TValue, TPathKind>,) => Promise<void> | void
    
    

Description

A function that defines custom debounce logic for a field.

This function receives the FieldContext for the field and should return a Promise<void> to delay an update, or void to apply an update immediately.

Jump to details