UNPKG

ts-pattern

Version:

The exhaustive Pattern Matching library for TypeScript.

9 lines (8 loc) 226 B
/** * Error when the given input value does not match any included pattern * and .exhaustive() was specified */ export declare class NonExhaustiveError extends Error { input: unknown; constructor(input: unknown); }