export function sleep(timeInMs: number): Promise { return new Promise((resolve) => { setTimeout(resolve, timeInMs); }); }