You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
hexmap/common/src/util/TypeUtils.ts

4 lines
190 B

/** Used when Typescript hasn't figured out that we can never reach a particular branch. */
export function exhaustivenessCheck(_param: never): never {
throw Error("This cannot be...")
}