The Typescript Never type represents the type that never happens or the values that never occur. The following are such places where we use the never type. never type represent a state which shouldn’t exist
The following are some of the scenarios where the Typescript infers the type as never.
- The return type of function that never returns (infinite loop or always throws an error)
- Variables when narrowed by a Type guard that can never be true
Table of Contents
Functions that never return
There are a few scenarios where functions might not return. The following examples show two such scenarios. The first example is an infinite Loop and the second example throws an error. In both examples, the function never returns
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | //Infinite loop // Inferred return type: never var x = function infiniteLoop() { while (true) { } } // Always throws an error // Inferred return type: never var y=function throwError() { throw new Error("Some errors occurred"); } |
Function Declaration gotcha
The Return inferred for function declaration is different from function expressions and arrow functions.
For Example in the following uses the function expression to declare the function infiniteLoop
. Here Typescript correctly infers the type as never
1 2 3 4 5 6 | var x = function infiniteLoop() { while (true) { } } |
However when we define the infiniteLoop
as function declaration, typescript infers the type as void instead of never. This is because of backward compatibility which you can read from here
1 2 3 4 5 6 | function infiniteLoop() { while (true) { } } |
1 2 3 4 5 6 | function infiniteLoop():never { while (true) { } } |
Type guard that can never be true
We use Type Guards to narrow down the type of an object within a conditional block. The Typescript infers the type as never if the conditional block is impossible to happen
For Example in the code below the variable padding
can be either a string
or number
. Hence the last else branch will never happen. The TypeScript infers the type of padding
variable inside the last else branch as never
1 2 3 4 5 6 7 8 9 10 11 12 13 | function padLeft(value: string, padding: string | number) { if (typeof padding === "number") { //Type of paddig is number } else if (typeof padding === "string") { //Type of paddig is string } else { //This part of the else loop never executes //Type of paddig is never } } |
Characteristics of Never
You can assign Never to every other type.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | let neverVar:never; let v1:any let v2:number let v3:string let v4:boolean let v5:{} v1=neverVar; v2=neverVar; v3=neverVar; v4=neverVar; v5=neverVar; |
But you cannot assign any other type to never
(except never
itself).
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | let neverVar:never; let v1:any let v2:number let v3:string let v4:boolean let v5:{} //The following results in an error neverVar=v1; neverVar=v2; neverVar=v3; neverVar=v4; neverVar=v5; |
The Typescript infers the return type as never
if a function expression or arrow function.
- has no return type annotation
- has no return statement
- Or has a return statement which returns never
- does not have an endpoint
(for function declarations void
is the default return type)
In the following examples, TypeScript infers the return type as never.
1 2 3 4 5 6 7 8 9 10 11 12 13 | //function expression let x = function (message) { throw new (message); }; //arrow function let y = (message) => { throw new (message); } |
Not here as we specifically annotate the return type as void
1 2 3 4 5 | let x1 = function (message):void { throw new (message); }; |
If a function has its return type annotated with never
.
- All of its
return
statements (if any) must returnnever
- The endpoint of the function must not be reachable.
The TypeScript compiler throws errors in the following examples as both the functions are annotated with never type. Because the first example returns a string and the second one has an endpoint.
1 2 3 4 5 6 7 8 9 10 11 | //Both of the following results in an error function x1(message):never { return message; }; function x2(message):never { let y= message; }; |
Void Vs Never
The never type looks very similar to void.
We use void when the function does return but does not return a value. The typescript infers the return value as void
.
In the following example, the arrow function does not return anything. But it does finish and return the control to back to the main program. The Typescript infers the return type as void
.
1 2 3 4 5 | let z = (a:number, b:number) => { let c=a+b; } |
The never return type when the function does not return at all. In the following example, Typescript infers the return type as never as the program enters into an infinite loop.
1 2 3 4 5 6 | let z = function infiniteLoop() { while (true) { } } |
The void
type can have undefined
or null
as a value whereas never cannot have any value.
References
Read More