Suggestion: non-nullable type · Issue #185 · microsoft/TypeScript

Introduce two new syntax for type declaration based on JSDoc var myString: !string = 'hello world'; //non-nullable var myString1: ?string = 'hello world'; // nullable var myString2: string = 'hello...