You have to declare the return type as null or turn off strictNullChecks in your tsconfig
public static bar<T>(x: T): T | null
or you could type null as any e.g.
return null as any;
You have to declare the return type as null or turn off strictNullChecks in your tsconfig
public static bar<T>(x: T): T | null
or you could type null as any e.g.
return null as any;