Files
base/node_modules/runed/dist/utilities/use-interval/use-interval.svelte.d.ts
T
eewing ec317eb17c
CI / build (push) Has been skipped
CI / deploy (push) Successful in 1m11s
INIT
2026-02-18 15:17:47 -06:00

52 lines
1.3 KiB
TypeScript

import type { MaybeGetter } from "../../internal/types.js";
export type UseIntervalOptions = {
/**
* Start the timer immediately
*
* @default true
*/
immediate?: boolean;
/**
* Execute the callback immediately after calling `resume`
*
* @default false
*/
immediateCallback?: boolean;
/**
* Callback to execute on every interval tick, receives the current counter value
*/
callback?: (count: number) => void;
};
export type UseIntervalReturn = {
/**
* Pause the interval
*/
pause: () => void;
/**
* Resume the interval
*/
resume: () => void;
/**
* Reset the counter to 0
*/
reset: () => void;
/**
* Whether the interval is currently active
*/
readonly isActive: boolean;
/**
* The current counter value
*/
readonly counter: number;
};
/**
* Wrapper for `setInterval` with controls for pausing and resuming.
*
* @see https://runed.dev/docs/utilities/use-interval
*
* @param delay - The interval in milliseconds between executions
* @param options - Configuration options
* @returns Object with pause, resume, reset methods, counter and isActive state
*/
export declare function useInterval(delay: MaybeGetter<number>, options?: UseIntervalOptions): UseIntervalReturn;