UNPKG

lib-curses

Version:

Simple node.js library for work with console

8 lines (7 loc) 289 B
/** * Pauses execution for a specified amount of time. * * @param {number} milliseconds - Amount of time to wait in milliseconds. * @returns {Promise<void>} A promise that resolves after specified time has passed. */ export declare function wait(milliseconds: number): Promise<void>;