4 lines
101 B
TypeScript
4 lines
101 B
TypeScript
![]() |
export function notReachable(_: never): never {
|
||
|
throw new Error(`Shouldn't reach here: ${_}`);
|
||
|
}
|