kjelsrud.dev/node_modules/bail/index.d.ts

11 lines
234 B
TypeScript
Raw Normal View History

2023-07-19 21:31:30 +02:00
/**
* 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