leptos_use

Function signal_throttled_with_options

Source
pub fn signal_throttled_with_options<S, T>(
    value: S,
    ms: impl Into<MaybeSignal<f64>> + 'static,
    options: ThrottleOptions,
) -> Signal<T>
where S: Into<Signal<T>>, T: Clone + 'static,
Expand description

Version of signal_throttled that accepts ThrottleOptions . See signal_throttled for how to use.