UNPKG

@qntm-code/utils

Version:

A collection of useful utility functions with associated TypeScript types. All functions have been unit tested.

5 lines (4 loc) 151 B
/** * Delays an async function using await given an optionally provided duration */ export declare function delay(duration?: number): Promise<void>;