(x: never)
| 62 | } |
| 63 | |
| 64 | export function assertUnreachable(x: never): never { |
| 65 | throw new Error(x); |
| 66 | } |
| 67 | |
| 68 | // See https://effectivetypescript.com/2020/05/12/unionize-objectify/ |
| 69 | export type Unionize<T extends object> = { |
no outgoing calls
no test coverage detected