mirror of
https://github.com/fosrl/pangolin.git
synced 2026-02-05 09:29:27 +00:00
5 lines
159 B
TypeScript
5 lines
159 B
TypeScript
export function wait(ms: number): Promise<void> {
|
|
// Wait for the specified amount of time
|
|
return new Promise((resolve) => setTimeout(resolve, ms));
|
|
}
|