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