1export function timeout(ms: number): Promise<void> { 2 return new Promise(r => setTimeout(r, ms)) 3}