UNPKG

foxts

Version:

Opinionated collection of common TypeScript utils by @SukkaW

5 lines (3 loc) 226 B
declare function wait(ms: number, timerUnref?: boolean): Promise<void>; declare function waitWithAbort(ms: number, signal: AbortSignal | undefined | null, timerUnref?: boolean): Promise<void>; export { wait, waitWithAbort };