7 lines
178 B
TypeScript
7 lines
178 B
TypeScript
/**
|
|
* AssertNever is a utility function that can be used for exhaustiveness checks in switch statements.
|
|
*
|
|
* @public
|
|
*/
|
|
export declare function assertNever(x: never): never;
|