diff --git a/bun.lockb b/bun.lockb index 5717294..3549df6 100755 Binary files a/bun.lockb and b/bun.lockb differ diff --git a/src/utils/useDebounce.ts b/src/utils/useDebounce.ts index b7b3138..3b23582 100644 --- a/src/utils/useDebounce.ts +++ b/src/utils/useDebounce.ts @@ -2,7 +2,7 @@ import { sideEffectsEnabled, useHook } from "kaioken" import { noop } from "kaioken/utils" type UseDebounceState = { - timer: Timer | undefined + timer: NodeJS.Timeout | undefined debounce: (func: (...args: unknown[]) => void, timeout?: number) => void }