Function leptos_use::use_interval_fn_with_options
source ยท pub fn use_interval_fn_with_options<CbFn, N>(
callback: CbFn,
interval: N,
options: UseIntervalFnOptions,
) -> Pausable<impl Fn() + Clone, impl Fn() + Clone>
Expand description
Version of use_interval_fn
that takes UseIntervalFnOptions
. See use_interval_fn
for how to use.