Releases: dojo/typings
Releases · dojo/typings
Release 1.11.8
1.11.7
1.11.6
Release 1.11.5
Changes
- Added
dojox/gfxand supporting typings - Updated to TypeScript 2
- Added
grunt-dojo2meta-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/_baseanddojox/color/Colorspacetypings - Callbacks from
.then()forDeferredandPromisedid 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/Cachedojo/store/JsonRestdojo/store/Observable
- Make references to declarations consistent
- Arguments to
Deferred.resolve()andDeferred.reject()optional (see #10) - Add
dojo/Statefulmodule and correctdojo/Eventedconstructor (see #14) - Update package dependencies
- Provide
dojo/_base/mixintypings
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.