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