mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-24 11:10:01 +08:00
316b925f94
* Use unreachable exception in favor of type safety * Add tests * add test
6 lines
148 B
TypeScript
6 lines
148 B
TypeScript
export default class UnreachableException {
|
|
constructor(value: never) {
|
|
return new Error(`unreachable case: ${JSON.stringify(value)}`);
|
|
}
|
|
}
|