Nexus / node_modules /bail /index.d.ts
Severian's picture
Upload 7464 files
c211499
raw
history blame contribute delete
234 Bytes
/**
* 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