index.d.ts 234 B

12345678910
  1. /**
  2. * Throw a given error.
  3. *
  4. * @param {Error|null|undefined} [error]
  5. * Maybe error.
  6. * @returns {asserts error is null|undefined}
  7. */
  8. export function bail(
  9. error?: Error | null | undefined
  10. ): asserts error is null | undefined