export function wait(ms: number): Promise { // Wait for the specified amount of time return new Promise((resolve) => setTimeout(resolve, ms)); }