hackatime/vendor/inertia/packages/svelte/dist/usePoll.d.ts
Mahad Kalam 42ceec73cb
Upgrade Inertia + new settings page (#950)
* New settings?

* New Settings page!

* Vendor Inertia

* Fix some issues

* <Link>ify the site!
2026-02-15 17:32:26 +00:00

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;
};