Interface: DebounceOptions
Defined in: async/types.ts:113
Options for debounce operations.
Properties
delay
readonlydelay:number
Defined in: async/types.ts:117
Delay in milliseconds to wait before invoking the function.
leading?
readonlyoptionalleading:boolean
Defined in: async/types.ts:123
Whether to invoke the function on the leading edge.
Default
false
trailing?
readonlyoptionaltrailing:boolean
Defined in: async/types.ts:129
Whether to invoke the function on the trailing edge.
Default
true