export function PromiseTimeout(timeoutMs: number = 10000) : Promise { return new Promise((resolve) => setTimeout(resolve, timeoutMs)) }