← Back to index
function assertIsError

Make an assertion that error is an Error. If not then an error will be thrown. An error class and a string that should be included in the error message can also be asserted.

Type Parameters

🔗
E extends Error = Error

Parameters

🔗
error: unknown
🔗
ErrorClass: new (...args: any[]) => E
🔗
msgIncludes: string
🔗
msg: string

Return Type

🔗
asserts error is E