18734 Commits
Author SHA1 Message Date
Diullei Gomes 8ee19e5c55 Merge pull request #690 from nestalk/master
Fix several definitions for TS 0.9
2013-06-24 18:46:22 -07:00
Diullei Gomes 0c29c1d516 Merge pull request #688 from nwolverson/optionalvalue
Simplify optional overloads
2013-06-24 18:39:01 -07:00
mihailik d537ae6279 Just a couple more tests, nowhere near of acceptable amount. 2013-06-25 02:05:45 +02:00
mihailik 4d3992f9d2 Updated using features in TypeScript v0.9
Previously the module name couldn't match the global function name, so we had to declare module 'CM' and function CodeMirror.

Now that TS can handle the naming clash correctly, we will go to the naming convention from CodeMirror docs.

Additionally, that allows using constructor for CodeMirror.Doc. Previously because of naming CM.Doc that wouldn't work.

Note that CodeMirror itself is not declared as a class, even though their actual implementation does allow 'newing' it internally. However, that is not advertised in the docs, so we assume it is a quirk for some edge case compatibility and leaving it out of the API declarations here.
2013-06-25 02:02:29 +02:00
Natan Vivo 44eb9bf8ff Improvements to the underscore definition.
* Added the OOP version of underscore _(value).
* Pick/Omit accept arrays as well as list of arguments.
* Clone of T now returns T instead of any.
* Removed UnderscoreWrappedObject. It was just a hack to make the test work. Now chain() returns any.
* Test can't test the result of mixin, as new there is the function _() returning the underscore object.
2013-06-24 19:06:59 -03:00
Neil Stalker 2192405a76 Fix definitions for TS 0.9
hammer.js
jake
jszip.js
dust.js
google,analytics
linq.js
2013-06-24 22:51:29 +01:00
Poul Sørensen bb5d20d333 Update node.d.ts 2013-06-24 23:39:56 +02:00
Neil Stalker beae1ebd88 fix scroller, soundjs and youtube definitions 2013-06-24 22:22:57 +01:00
Neil Stalker 6cb6cdbe83 fix threejs definition and tests 2013-06-24 22:17:48 +01:00
Neil Stalker 29e345ec32 fix webaudioapi 2013-06-24 21:57:05 +01:00
Neil Stalker 557b38099e Fix fabric.js definition and tests 2013-06-24 21:53:20 +01:00
Neil Stalker 126bf61157 Update test runner to process files alphabetically 2013-06-24 21:03:34 +01:00
Diullei Gomes 4e89cd045d Merge pull request #694 from nvivo/underscore
Allow underscore to be used as ambient declaration and external module.
2013-06-24 12:52:06 -07:00
Natan Vivo 5ac4ffc66a Allow underscore to be used as ambient declaration and external module. 2013-06-24 16:28:12 -03:00
Neil Stalker d4e621d9ad fix nvnc, zeromq, icheck and unity-webapi definitions 2013-06-24 19:20:59 +01:00
Neil Stalker d4c6dd3d45 fix webrtc definitions 2013-06-24 18:40:03 +01:00
Neil Stalker 484487ff17 Fix rx.js definition 2013-06-24 18:09:09 +01:00
Neil Stalker cee8f3ebc2 Fix iScroll and angular definitions 2013-06-24 17:26:24 +01:00
vcastro 54d7df39e7 Updated the durandal router plugin:
- Added definition for the guardRoute 'abstract' router function.
2013-06-24 15:16:16 +01:00
Neil Stalker 182b290dc4 fix filewriter, restify and chrome definitions 2013-06-24 12:49:31 +01:00
vcastro 6543a55f8f Updates to breeze.d.ts according to changes in Breeze 1.3.6:
-Added setDetached method to EntityAspect
-Changed the signature of EntityManager.importEntities to accept either a string or a JSON object.
2013-06-24 10:03:45 +01:00
Nicholas Wolverson 6c9592fdc4 Simplify optional overloads 2013-06-24 09:36:51 +01:00
Boris Yankov 144b89396c Merge pull request #651 from teves-castro/master
Updates to support TS 0.9
2013-06-23 19:43:24 -07:00
Boris Yankov c423e9f541 Merge pull request #664 from vagarenko/master
Added generic typing and converted to TS 0.9 module
2013-06-23 19:43:11 -07:00
Boris Yankov 1521555760 Merge pull request #681 from nvivo/backbone_improvements
Backbone improvements
2013-06-23 09:06:44 -07:00
Christiaan Rakowski 612b3835ea Merge branch 'master' of https://github.com/borisyankov/DefinitelyTyped 2013-06-23 18:02:31 +02:00
Boris Yankov 8e2ac9112c Merge pull request #679 from zoos/master
Durandal definition support new Knockout definition (generics) and replace bool to boolean.
2013-06-22 11:40:34 -07:00
Boris Yankov 1665a1af8c Merge pull request #682 from nvivo/knockback_0.9
Upgrade knockback definition to 0.9.
2013-06-22 11:27:16 -07:00
Boris Yankov 30cfdfaadb Merge pull request #683 from nvivo/knockout_fixes
Fix wrong signature on knockout computed. Missing options argument.
2013-06-22 11:26:58 -07:00
Natan Vivo b6307ba232 Fix wrong signature on knockout computed. Missing options argument.
Ref: http://knockoutjs.com/documentation/computedObservables.html#computed_observable_reference
2013-06-22 13:50:10 -03:00
Natan Vivo bcb5914a86 Add missing property View.cid. 2013-06-22 12:43:53 -03:00
Natan Vivo 3c72be6a93 Add missing property View.cid. 2013-06-22 12:39:21 -03:00
Natan Vivo 68a3c88230 Upgrade knockback definition to 0.9.
* Remove unnecessary exports.
* Remove semicolon at the end of module.
* Basic migration to new Knockout's generics implementation.
2013-06-22 12:17:27 -03:00
Natan Vivo 2167e6f5b0 Fix test, remove duplicated declaration for _ and $. 2013-06-22 11:43:21 -03:00
Natan Vivo 38e50c8b10 Add internal method to View. 2013-06-22 11:25:42 -03:00
Natan Vivo d6c2d01c5c Add internal methods and mixins to Model and Collection. 2013-06-22 11:25:42 -03:00
Natan Vivo 08259b232b Improvements to definition.
* Model.urlRoot should be any, as it may be a string or a function.
* Added internal methods to Router.
* Improved definition of History:
  - Extends Events
  - Remove pushState method, it doesn't exist in the source
  - Added internal methods to definition.
2013-06-22 11:25:41 -03:00
Natan Vivo 364bdc1176 Remove unused code. 2013-06-22 11:25:41 -03:00
Natan Vivo 875a928373 Remove template property from View, its not part of the class. 2013-06-22 11:25:41 -03:00
Boris Yankov af42359f83 Merge pull request #680 from nvivo/backbone_0.9
Backbone.js -> Fix compilation errors for 0.9.
2013-06-22 06:19:39 -07:00
Natan Vivo 8c3bfa5ee5 Backbone.js -> Fix compilation errors for 0.9. 2013-06-22 09:34:20 -03:00
ZOS 6024a59857 Support new Knockout definition (generics) and replace bool to boolean 2013-06-22 11:53:14 +04:00
Diullei Gomes 22970a275c Merge pull request #677 from dflor003/master
Add typings for jQuery jStorage plugin
2013-06-21 20:42:23 -07:00
Danil Flores bca57e2d23 Added ladda library 2013-06-21 23:09:43 -04:00
Diullei Gomes 9272509b67 Merge pull request #678 from Diullei/master
bug fix - jquery.flot
2013-06-21 19:57:16 -07:00
Diullei Gomes 0ac130b9b4 bug fix - jquery.flot 2013-06-21 23:53:09 -03:00
Danil Flores 50f6e3ccfc Added jStorage plugin 2013-06-21 22:48:49 -04:00
Diullei Gomes 6e6131f58b Merge pull request #674 from Diullei/master
bug fix - easeljs and tweenjs
2013-06-21 16:27:23 -07:00
Diullei Gomes 41aee7c70a bug fix - easeljs and tweenjs 2013-06-21 20:25:26 -03:00
Diullei Gomes 8265a23f90 Merge pull request #673 from Diullei/master
bug fix - jquery.bbq
2013-06-21 15:50:49 -07:00