export default function delay(fn: () => T, wait = 500): Promise { return new Promise(resolve => { setTimeout(() => resolve(fn()), wait); }); }