Classical 0.1.8
See the version list below for details.
dotnet add package Classical --version 0.1.8
NuGet\Install-Package Classical -Version 0.1.8
<PackageReference Include="Classical" Version="0.1.8" />
<PackageVersion Include="Classical" Version="0.1.8" />
<PackageReference Include="Classical" />
paket add Classical --version 0.1.8
#r "nuget: Classical, 0.1.8"
#:package Classical@0.1.8
#addin nuget:?package=Classical&version=0.1.8
#tool nuget:?package=Classical&version=0.1.8
A TypeScript Base Class Library.
Learn more about Target Frameworks and .NET Standard.
This package has no dependencies.
GitHub repositories
This package is not used by any popular GitHub repositories.
| Version | Downloads | Last Updated | 
|---|---|---|
| 0.2.19 | 171 | 2/19/2015 | 
| 0.2.18 | 61 | 2/18/2015 | 
| 0.2.17 | 53 | 2/18/2015 | 
| 0.2.16 | 55 | 2/18/2015 | 
| 0.2.15 | 50 | 2/18/2015 | 
| 0.2.14 | 72 | 1/28/2015 | 
| 0.2.13 | 52 | 1/28/2015 | 
| 0.2.12 | 57 | 1/28/2015 | 
| 0.2.11 | 51 | 1/28/2015 | 
| 0.2.10 | 57 | 1/28/2015 | 
| 0.2.9 | 74 | 1/12/2015 | 
| 0.2.8 | 55 | 1/12/2015 | 
| 0.2.7 | 58 | 1/12/2015 | 
| 0.2.6 | 57 | 1/12/2015 | 
| 0.2.5 | 61 | 1/12/2015 | 
| 0.2.4 | 56 | 1/12/2015 | 
| 0.2.3 | 57 | 1/12/2015 | 
| 0.2.2 | 52 | 1/12/2015 | 
| 0.2.1 | 65 | 1/11/2015 | 
| 0.2.0 | 56 | 1/11/2015 | 
| 0.1.14 | 62 | 1/8/2015 | 
| 0.1.13 | 69 | 12/24/2014 | 
| 0.1.12 | 64 | 12/22/2014 | 
| 0.1.11 | 66 | 12/21/2014 | 
| 0.1.10 | 65 | 12/21/2014 | 
| 0.1.9 | 64 | 12/20/2014 | 
| 0.1.8 | 62 | 12/20/2014 | 
| 0.1.7 | 60 | 12/20/2014 | 
| 0.1.6 | 57 | 12/20/2014 | 
| 0.1.5 | 81 | 12/19/2014 | 
| 0.1.4 | 64 | 12/19/2014 | 
| 0.1.3 | 62 | 12/19/2014 | 
| 0.1.2 | 65 | 12/16/2014 | 
| 0.1.1 | 60 | 12/16/2014 | 
| 0.1.0 | 64 | 12/16/2014 | 
- The Watch.js polyfill was added to classical.js.
- The MutationObserver.js polyfill was added to classical.js
- JsMin was used to minify classical.js
- Added Intro.ts for getting started
- Added a minified version of classical.js: classical.min.js
- Added two methods to the Type class in Reflection
  - getFieldsOf
  - getFieldOf
- All tests continue to pass
//Write your first few lines of Classical.js
module Classical.Introduction {
    import Assert = Classical.Assert;
    import Expression = Classical.Expression;
    import u = Utilities;
    import r = Classical.Reflection;
    import e = Classical.Events;
    import b = Classical.Binding;
    import cc = Classical.Collections;
    import bc = Classical.Binding.Collections;
    //Explore each module in Classical.js using intellisense
}