export function sleep(time: number): Promise { return new Promise((done) => { setTimeout(() => { done() }, time) }) }