`setDefaultTimeout(undefined)` doesn't remove the default 5s timeout. But `setDefaultTimeout(null)` does. Except that it leads to a TypeScript error: >Argument of type 'null' is not assignable to parameter of type 'number | undefined'.
setDefaultTimeout(undefined)doesn't remove the default 5s timeout.But
setDefaultTimeout(null)does.Except that it leads to a TypeScript error: