@tempots/std

ThrottleOptions interface

Configuration options for throttle function.

Signature:

export interface ThrottleOptions 

Properties

Property

Modifiers

Type

Description

debounceMode?

boolean

(Optional) Controls the throttle behavior: - If true, schedules clearing instead of the callback - If false, schedules the callback - If undefined, applies normal throttle behavior

noLeading?

boolean

(Optional) If true, suppresses the immediate call on the first trigger. false

noTrailing?

boolean

(Optional) If true, suppresses the final call after the last trigger. false