Function leptos_use::signal_debounced_with_options

source ยท
pub fn signal_debounced_with_options<S, T>(
    value: S,
    ms: impl Into<MaybeSignal<f64>> + 'static,
    options: DebounceOptions,
) -> Signal<T>
where S: Into<Signal<T>>, T: Clone + 'static,
Expand description

Version of signal_debounced that accepts DebounceOptions . See signal_debounced for how to use.