Files
documentation/node_modules/bail/index.d.ts
2024-03-22 03:47:51 +05:30

11 lines
234 B
TypeScript

/**
* Throw a given error.
*
* @param {Error|null|undefined} [error]
* Maybe error.
* @returns {asserts error is null|undefined}
*/
export function bail(
error?: Error | null | undefined
): asserts error is null | undefined