mirror of
https://github.com/logos-messaging/logos-messaging-js.git
synced 2026-01-15 06:23:09 +00:00
4 lines
98 B
TypeScript
4 lines
98 B
TypeScript
|
|
export function delay(ms: number) {
|
||
|
|
return new Promise((resolve) => setTimeout(resolve, ms));
|
||
|
|
}
|