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