frontPanel/src/utils/notReachable.ts

4 lines
99 B
TypeScript
Raw Normal View History

2023-11-13 18:04:51 +00:00
export function notReachable(_: never): never {
2023-12-31 02:53:25 +00:00
throw new Error(`Shouldn't reach here: ${_}`);
2023-11-13 18:04:51 +00:00
}