pub fn signal_debounced_local_with_options<S, T>(
value: S,
ms: impl Into<Signal<f64>> + 'static,
options: DebounceOptions,
) -> Signal<T, LocalStorage>
Expand description
Version of
signal_debounced_local
that accepts
DebounceOptions
.
See
signal_debounced_local
for how to use.