For those who don’t know, Typescript is a web language written on top of javascript. Any valid javascript is also valid typescript, and in fact, typescript compiles down to straight javascript. (Learn more here: http://typescriptlang.org)
I was working on a personal project where I wanted some charts. I came across this library :) However, I have only been working in Typescript. To facilitate this, many libraries have added typescript “definitions”. This allows for compile time type checking as well as intelligence when using Visual Studio.
A community project called DefinitelyTyped was started a while back to facilitate these requests. Since I needed the typings, I went ahead and used the public documentation on this site and wrote the definition file. This morning, the pull request and validated and merged in.
So, if you want typescript typings for CanvasJS 1.5 GA, look no further than DefinitelyTyped. If you are using nuget, you can also download the nuget package with these typings: https://www.nuget.org/packages/canvasjs.TypeScript.DefinitelyTyped/
P.S. If the CanvasJS creators have any issues with this, we can always remove the typings from Definitely Typed…but hopefully you view it like I do as just another way to get CanvasJS to be used by typescript :)
-
This topic was modified 10 years, 1 month ago by mover5.