Function leptos_use::use_interval_with_options

source ยท
pub fn use_interval_with_options<N>(
    interval: N,
    options: UseIntervalOptions,
) -> UseIntervalReturn<impl Fn() + Clone, impl Fn() + Clone, impl Fn() + Clone>
where N: Into<MaybeSignal<u64>>,
Expand description

Version of use_interval that takes UseIntervalOptions. See use_interval for how to use.