CoolFace
Apppublic

AK-21/Graphite-Industrial-Intelligence

sourceHugging Faceupdated 3mo agoView on Hugging Face
0likes
index.d.ts11 linesDownload Raw Back to bail
1/**2 * Throw a given error.3 *4 * @param {Error|null|undefined} [error]5 *   Maybe error.6 * @returns {asserts error is null|undefined}7 */8export function bail(9  error?: Error | null | undefined10): asserts error is null | undefined11