3

From here https://www.nuget.org/packages/onsenui.TypeScript.DefinitelyTyped/

I notice that there is only one version 0.0.1 TypeScript Definition for Onsen UI and stay there for a while (April 07 2015).

Is this 0.0.1 still corresponding to the latest Onsen UI v1.3.11?

If not, will there possibility be an update for it?

Much appreciated.

Paul
  • 437
  • 2
  • 14
  • It doesn't correspond to Onsen UI 1.3.11 but it's almost 100% compatible because the Onsen elements structure has not changed that much. – Andi Pavllo Oct 04 '15 at 17:05

1 Answers1

4

These days type definition files are installed using tsd not nuget. You can install tsd via npm.

npm install tsd

Then install Onsen UI:

tsd install onsenui

The Onsen UI team has recently published a blog post about the TypeScript support, you can take a look to learn more about it.

Remo H. Jansen
  • 23,172
  • 11
  • 70
  • 93