mirror of
https://github.com/System-End/hackatime.git
synced 2026-04-19 21:05:15 +00:00
* New settings? * New Settings page! * Vendor Inertia * Fix some issues * <Link>ify the site!
5 lines
232 B
TypeScript
5 lines
232 B
TypeScript
import { type PollOptions, type ReloadOptions } from '@inertiajs/core';
|
|
export default function usePoll(interval: number, requestOptions?: ReloadOptions, options?: PollOptions): {
|
|
stop: VoidFunction;
|
|
start: VoidFunction;
|
|
};
|