update timer type

This commit is contained in:
Triston Armstrong 2024-11-08 01:13:02 -05:00
parent f9d0315bd7
commit e40d405840
2 changed files with 1 additions and 1 deletions

BIN
bun.lockb

Binary file not shown.

View File

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