Throw a compiler error if `typeof` operator is compared to strings other than [`typeof` operator results](http://www.ecma-international.org/ecma-262/6.0/#sec-typeof-operator-runtime-semantics-evaluation) **TypeScript Version:** 2.1.1 **Code** ```ts typeof a === 'String' // error typeof b === 'null' // error ```