Function signal_debounced_local_with_options

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

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