frontPanel/src/utils/notReachable.ts
2023-12-31 05:53:25 +03:00

4 lines
99 B
TypeScript

export function notReachable(_: never): never {
throw new Error(`Shouldn't reach here: ${_}`);
}