1
0

wait.ts 95 B

12
  1. export const wait = async (ms: number) =>
  2. new Promise((resolve) => setTimeout(resolve, ms));