Website: www.flexmonster.com
To do that, simply add flexmonster.d.ts
at the top of your code.
///<reference path="flexmonster.d.ts"/>
///<reference path="flexmonster.d.ts"/>
class PivotApp {
private pivot: Flexmonster.Pivot;
constructor() {
this.pivot = Flexmonster({
container: "content",
toolbar: true,
width: "100%",
height: "500px",
report: "report.json",
licenseKey: "XXXX"
});
}
}