TypeScript Terms
TypeScriptLang (Docs)
- Constructor
- Declarations
- Generics
- Types 
- Typings 
Types
- any
- array [1, 2, 'three', 'four']
- boolean truefalse
- interface - Custom Type
- object {'like':'JSON', 'awesome':true}
- string 'Hello World'
TypeScriptLang (Docs)
Types
Typings
[1, 2, 'three', 'four']true  false{'like':'JSON', 'awesome':true}'Hello World'