This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* eslint-disable @typescript-eslint/no-explicit-any */ | |
| /** biome-ignore-all lint/suspicious/noExplicitAny: <> */ | |
| /** | |
| * Aguarda um tempo em milissegundos. | |
| * @param ms - Quantidade de milissegundos para aguardar. | |
| */ | |
| export function delay(ms: number): Promise<void> { | |
| return new Promise((resolve) => setTimeout(resolve, ms)); | |
| } |
OlderNewer