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