mirror of
https://github.com/Sevichecc/Urara-Blog.git
synced 2025-05-03 05:09:30 +08:00
10 lines
234 B
Text
10 lines
234 B
Text
/**
|
|
* 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
|