Commit Graph
2435 Commits
Author SHA1 Message Date
ashwinr e67ec88e0d Update bind method for underscore.d.ts
Bind on a <Function> parameter. This fixes typing errors caused by binding functions returned by other underscore methods such as partial/memoize/throttle/debounce etc.
2013-10-03 15:35:44 -04:00
Diullei Gomes a7e3a4fa75 Merge pull request #1089 from derekcicerone/patch-10
Create when.d.ts
2013-10-03 08:05:34 -07:00
Diullei Gomes d7c2d11468 Merge pull request #1109 from kyo-ago/master
Add AppFramework
2013-10-03 07:50:51 -07:00
kyo-ago 119c213c5e bug fix 2013-10-03 22:23:35 +09:00
kyo-ago 5c4de2e90f Merge remote-tracking branch 'main/master' 2013-10-03 22:03:00 +09:00
kyo-ago e6f2fa8481 add toggleClass 2013-10-03 22:02:28 +09:00
basarat 0b11d4cea9 Merge pull request #1107 from derekcicerone/patch-15
Fix noImplicitAny in zeroclipboard.d.ts
2013-10-02 20:54:08 -07:00
basarat c41200f038 Update easeljs.d.ts 2013-10-03 13:47:58 +10:00
basarat 615b4aad10 Merge pull request #1106 from golear/patch-1
Added mouseMoveOutside to Stage class
2013-10-02 20:46:37 -07:00
Derek Cicerone 4b087f54e5 Fix noImplicitAny in zeroclipboard.d.ts
* checked all of these against the source code, they should all be correct (no assumptions about return types this time :)
2013-10-02 22:02:30 -04:00
golear 7de857e379 Added mouseMoveOutside to Stage class
Stage.mouseMoveOutside was missing.  Added it.
2013-10-02 21:00:01 -05:00
basarat 29c3c36ef9 Merge pull request #1104 from wiredprairie/patch-4
Added WinJS.Binding.Template class
2013-10-02 17:01:36 -07:00
Aaron dbcb92dc96 Update win.js to include the Template class 2013-10-02 11:25:04 -05:00
Aaron 856043d464 Added WinJS.Binding.Template class
I did not add the unusual function `render.value(...)` as I didn't know how to represent that cleanly in TypeScript.
2013-10-02 08:41:56 -05:00
basarat f898e01954 Merge pull request #1103 from derekcicerone/patch-14
Add missing r, g, b for RGBColor and empty() for Selection
2013-10-02 05:21:29 -07:00
Derek Cicerone 2f6ef85160 Add missing r, g, b for RGBColor and empty() for Selection 2013-10-01 15:00:04 -04:00
basarat 2a1a03c61f Controller is a valid directive member 2013-10-01 22:27:10 +10:00
basarat 741fb5cd6e Merge pull request #1094 from derekcicerone/patch-13
Fix noImplicitAny errors in chai-assert.d.ts
2013-09-29 15:11:03 -07:00
basarat 85b567bdb9 Merge pull request #1095 from jvilk/master
Node: Fixing fs methods stat/lstat/fstat
2013-09-29 03:27:05 -07:00
John Vilk baa367d1b3 stat/lstat/fstat are asynchronous and return void.
Also tidying up a few callback signatures for fun.
2013-09-28 17:48:26 -04:00
Derek Cicerone 19c3427645 Fix noImplicitAny errors in chai-assert.d.ts
* assuming void for all return types
2013-09-28 17:34:48 -04:00
kyo-ago 2d667c61fc add appframework 2013-09-28 20:19:21 +09:00
basarat 0bdbb0fc84 Merge pull request #1090 from jvilk/master
Node: Adding missing fs methods + fixing a few method signatures
2013-09-27 22:24:03 -07:00
basarat b4feb5adb0 Merge pull request #1085 from MagicMau/master
Expanded highcharts definitions
2013-09-27 21:39:53 -07:00
basarat 34846b7740 Merge pull request #1088 from stijnherreman/jquery.validation
Improved readability and added missing property.
2013-09-27 21:38:52 -07:00
basarat d190fe25d9 Merge pull request #1076 from DickvdBrink/patch-1
Added GlobalizationError constants
2013-09-27 21:37:43 -07:00
basarat a27594622d angular useful private members of scope 2013-09-28 13:56:26 +10:00
basarat b979419112 Merge pull request #1086 from greysonp/master
Fixed the definitions for local and sync storage.
2013-09-27 20:25:36 -07:00
basarat 83a0e82dff Merge pull request #1084 from vvakame/jasmine-add-support-noImplicitAny
Added noImplicitAny option support to jasmine
2013-09-27 20:23:03 -07:00
John Vilk 0b306aaef6 'mode' can be a number or a string.
I realize this could be considered pedantic, but the typings do not even consistently use one or the other. Previously, certain functions assumed string, others assumed number. This way, you can use either.
2013-09-27 15:50:03 -04:00
John Vilk 666cd33fe8 In many fs functions, mode is optional, which means that the argument that takes its slot becomes the callback.
Adding alternative definitions to account for this.
2013-09-27 15:43:28 -04:00
John Vilk d39e7a3125 In fs's truncate functions, 'len' is optional (and defaults to 0). 2013-09-27 15:20:58 -04:00
John Vilk b6874ee014 fs.realpath's cache is an *object literal*, not a string or a boolean. 2013-09-27 15:00:04 -04:00
John Vilk e442870348 Whoops. fd is a *string*, not a *number*. 2013-09-27 14:51:25 -04:00
John Vilk aed3e0fc50 Adding missing method signatures and fixing incorrect method signatures.
The following missing methods were added:
* fs.readlinkSync
* fs.ftruncate
* fs.ftruncateSync

The following method signatures were fixed:
* path.resolve: Takes an array of arbitrary length. This does not necessarily need to be a string array; resolve skips any non-string elements.
* process.cwd: Returns a string, not void.
2013-09-27 14:46:39 -04:00
Derek Cicerone 8183240157 Create when.d.ts 2013-09-27 14:09:10 -04:00
Stijn Herreman 4a18b68ad5 Add 'settings' property to expose the ValidationOptions. 2013-09-27 12:02:52 +02:00
Stijn Herreman ba2f43d980 Up the version number. 2013-09-27 11:21:46 +02:00
Stijn Herreman 861a5b2a4d Sort interface members, so it's easier to find one. 2013-09-27 11:17:58 +02:00
Greyson Parrelli a90cfc6be9 Fixed the definitions for local and sync storage. 2013-09-26 14:47:45 -04:00
Maurits Elbers 73202691b6 Expanded highcharts definitions
Added some missing definitions to highcharts.d.ts
2013-09-26 16:58:07 +02:00
vvakame e77a73d69e Added noImplicitAny option support to jasmine 2013-09-26 15:38:19 +09:00
Boris Yankov c2df10e5f1 Merge pull request #1083 from apuchkov/master
Override find functions in IAugmentedJQuery interface
2013-09-25 18:21:46 -07:00
Alex Puchkov e381ed37dd Override find functions in IAugmentedJQuery interface
Calling IAugmentedJQuery.find() returns variable of IAugmentedJQuery
type, instead of JQuery.
2013-09-25 17:02:06 -04:00
Diullei Gomes 6b5f41cf31 Merge pull request #1080 from axefrog/master
Create express-validator.d.ts
2013-09-25 12:38:38 -07:00
basarat aa8faeb58f Merge pull request #1081 from santialbo/patch-1
Fix typo in Angular.js type definition
2013-09-25 04:10:00 -07:00
Santi Albo 2be34a6ce6 Typo in Angular.js type definition (controler -> controller) 2013-09-25 11:46:33 +01:00
basarat 36d962b362 Merge pull request #1079 from varju/gruntjs
Gruntjs signature improvements
2013-09-24 16:23:12 -07:00
Nathan Ridley b19cc410bc Create express-validator.d.ts 2013-09-24 23:26:45 +01:00
Alex Varju abb169542f define interface for 'this' object when executing a task 2013-09-24 15:04:39 -07:00