5 lines
177 B
TypeScript
5 lines
177 B
TypeScript
/**
|
|
* A utility function that executes a callback after a specified number of milliseconds.
|
|
*/
|
|
export declare function afterSleep(ms: number, cb: () => void): NodeJS.Timeout;
|