export function timeout(ms: number): Promise { return new Promise(r => setTimeout(r, ms)) }