-
This cheat sheet is provisional and may change!
Installing Typescript and its typings
tsd install // install typings package command typings install // install ttypings package command typings install dt~underscore --global --save // install typings for underscore
Declaring third party libraries.
declare var: any; declare var JSONEditor: any;
Importing third party libraries.
import * as _ from 'underscore'; // import underscore to be used inside ts code