for global variables, that you are sure they will be available at run time, you can use declare var statement.
with declare, you don’t give the variable any value, instead you just declare its type.
declarevarjQuery:any;// jQuery is a global variable, and tsc won't complain about it.declarevarglobal:any;// global is a global variable, and tsc won't complain about it.