Releases: dojo/typings
Releases · dojo/typings
Release 1.11.8
1.11.7
1.11.6
Release 1.11.5
Changes
- Added
dojox/gfx
and supporting typings - Updated to TypeScript 2
- Added
grunt-dojo2
meta-task to the build dojox/string/BidiEngine
- minor fixes and typos eliminated!
Release 1.11.3
Changes
- Where constructor functions are exported from modules, provide a type alias for the type, which means that you don't have to reference the namespaced type name (see #16). For example:
import * as Deferred from 'dojo/Deferred';
interface Foo {
dfd: Deferred<any>;
}
/* previously you would have had to */
interface Bar {
dfd: dojo.Deferred<any>;
}
- Add
dojox/color/_base
anddojox/color/Colorspace
typings - Callbacks from
.then()
forDeferred
andPromise
did not have the correct return signature to allowed chained.then()
functions to resolve the type of the resolution value. Now they do.
Release 1.11.2
Changes
- Type:
dojo/store/Cache
dojo/store/JsonRest
dojo/store/Observable
- Make references to declarations consistent
- Arguments to
Deferred.resolve()
andDeferred.reject()
optional (see #10) - Add
dojo/Stateful
module and correctdojo/Evented
constructor (see #14) - Update package dependencies
- Provide
dojo/_base/mixin
typings
Release 1.11.1
Release 1.11.0
While not complete, we now have a substantial enough set of typings to release this package.
It is available on npm via:
$ npm install dojo-typings
Thanks to @bitranch, @devpaul and @jacobroufa for contributing to this release! It will be very much powered by contributions. Please see the contribution guidelines to help out.
For information on how to use the typings, please checkout out the wiki.