Sumit Kumar Maitra
d13b79b851
Updated Quill definitions (to v1.0.0) with revisions as per inputs from @zhengbli
2016-09-07 03:37:18 +01:00
Sumit Kumar Maitra
fbfb2a48ec
Updating Quill JS definitions to v1.0.0
...
Refactoring definitions as per latest guidelines/best-practices
Built using Typescript 1.8
2016-09-07 00:43:03 +01:00
Nick Zelei
03f3ca4333
added missing property to child_process ( #10997 )
...
added missing property to child_process
2016-09-07 00:26:30 +09:00
Masahiro Wakame
5bf030ac72
suppress error about node/node-tests.ts with --target es5 ( #11056 )
2016-09-07 00:20:08 +09:00
hriss95
8caf4a5724
Node.d.ts: Update definitions for module "dns" ( #10990 )
2016-09-07 00:19:55 +09:00
hriss95
15c0df84ce
Node.d.ts: Update definitions for module "util" ( #10989 )
2016-09-07 00:19:06 +09:00
hriss95
3be6a88598
Node.d.ts: Update definitions for module "fs" ( #10987 )
2016-09-07 00:12:01 +09:00
hriss95
2bf1d27063
Node.d.ts: Update definitions for module "os" ( #10986 )
2016-09-07 00:11:18 +09:00
hriss95
700d3aa998
Node.d.ts: Update definitions for module "dgram" ( #10982 )
2016-09-07 00:05:45 +09:00
Denis
7c4c718b5b
Added complete boolean to progress definition ( #10843 )
...
The `complete` variable is described as (true|false) if the progress status is completed.
Quickstart instructions has `complete` in the example.
```javascript
var ProgressBar = require('progress');
var bar = new ProgressBar(':bar', { total: 10 });
var timer = setInterval(function () {
bar.tick();
if (bar.complete) {
console.log('\ncomplete\n');
clearInterval(timer);
}
}, 100);
```
2016-09-06 23:53:38 +09:00
Tobias Kahlert
d6f0ad10bf
added defs for a filter function to the options ( #10975 )
...
As described in https://github.com/AvianFlu/ncp the option.filter-property also takes a function,
that takes a filename and returns a Boolean signalling, if the given file should be copied or not.
2016-09-06 23:51:59 +09:00
Nathan Ainslie
7b7425e8ba
add definitions for phonegap-plugin-barcodescanner ( #10974 )
2016-09-06 23:51:24 +09:00
Alejandro Sánchez
fc931b26dd
Made ErrnoException.errno a string as per NodeJS API documentation ( #10970 )
2016-09-06 23:46:48 +09:00
Alejandro Sánchez
2966b1b8ba
Fix #10919 - Added IterableIterator forward declaration to enable compilation on targets lower than es2015 ( #10943 )
...
* Fix #10919
* Fix IterableIterator<T> is not an Array type error for test when targetting lower than es2015
* Revert "Fix IterableIterator<T> is not an Array type error for test when targetting lower than es2015"
This reverts commit ce1108c87574dca0a47801bf4e7cf818aafae1b4.
2016-09-06 23:31:02 +09:00
hriss95
6013c413c2
Node.d.ts: Update definitions for module "domain" ( #10965 )
...
* Node.d.ts: Update definitions for module "domain"
* Node.d.ts: Update definitions for module "domain"
2016-09-06 23:18:35 +09:00
hriss95
6866455f51
Node.d.ts: Introduce module "timers" ( #10964 )
2016-09-06 23:17:33 +09:00
David Poetzsch-Heffter
5c82604617
SendOptions for parse push on new parse-server need the useMasterKey flag to work ( #10962 )
2016-09-06 23:15:33 +09:00
hriss95
ef8a45b6e5
Node.d.ts: Update definitions for module "repl" ( #10958 )
2016-09-06 23:13:49 +09:00
Tomas Mozeris
6ae3be6d82
Add actionTypes export ( #10957 )
2016-09-06 23:12:40 +09:00
Stef Heyenrath
90c2247f74
Updated aws-lambda ( #10966 )
...
* Updated aws-lambda
Fixed issue #10956
* Bring back old functions for Node.js Runtime v0.10.42
Bring back old functions for Node.js Runtime v0.10.42
2016-09-06 23:11:58 +09:00
Mario Adrian
b74d0bee45
The "chain" methods "all" return boolean values. ( #10955 )
...
They actually return _ChainSingle<boolean>, not _Chain<T>.
http://underscorejs.org/#every
2016-09-06 23:10:57 +09:00
hriss95
76a497660f
Node.d.ts: Update definitions for module "http" ( #10954 )
2016-09-06 23:10:30 +09:00
Mario Adrian
03b4cf5036
Update underscore.d.ts ( #10953 )
...
the chain functions: indexOf, lastIndexOf, sortedIndex returns a _ChainSingle<number>
2016-09-06 23:07:25 +09:00
Kensuke Matsuzaki
8c6386ebf4
Add missing method definitions for sql.js ( #10948 )
2016-09-06 23:06:29 +09:00
Mudkip
fdbf262aa9
Add type definition for koa-json-error ( #10951 )
...
* Add type definition for koa-json-error
* Consist with import statement
2016-09-06 23:06:12 +09:00
Mudkip
8ca65ab187
ES2015 module support for koa-compress and koa-favicon ( #10949 )
2016-09-06 23:02:57 +09:00
Mudkip
e7f20ea2f4
Use for path in koa-router ( #10941 )
2016-09-06 23:02:09 +09:00
Cody Lundquist
c923214e96
Add typings for lazy() method ( #10945 )
...
* Add typings for lazy() method
Here is a link to the documentation: https://github.com/hapijs/joi/blob/v9.0.4/API.md#lazyfn
* Add test for lazy method.
2016-09-06 23:01:28 +09:00
Matt Lewis
f3507ff480
Add missing chai-things typings ( #10936 )
2016-09-06 22:53:18 +09:00
Matt Lewis
db2cdad3e6
Add DSUtils global ( #10939 )
2016-09-06 22:53:07 +09:00
Óscar Carretero
09a6c85392
FullCalendar header option accepts boolean value ( #10942 )
2016-09-06 22:52:50 +09:00
Matt Lewis
26de5a524f
Add some missing typings to js-data-http ( #10940 )
2016-09-06 22:50:30 +09:00
Jasper Siegmund
545269415d
Updated method sig for logout which returns a promise (not void) ( #10931 )
2016-09-06 22:45:42 +09:00
kfickel
49870cb1d4
Fixed node.js-crypto-typings Verify.verify and Signer.sign ( #10930 )
...
source for Verify
https://nodejs.org/dist/latest-v6.x/docs/api/crypto.html#crypto_verifier_verify_object_signature_signature_format
source for Signer
https://nodejs.org/dist/latest-v6.x/docs/api/crypto.html#crypto_sign_sign_private_key_output_format
2016-09-06 22:44:37 +09:00
adstep
f01a67a8f2
authManager update and tests ( #10858 )
...
* authManager update and tests
* return type annotation
2016-09-06 22:42:24 +09:00
akankov
9726ab6460
swiper constructor update ( #10928 )
2016-09-06 22:42:05 +09:00
Tyler Waters
981a25bd1f
Updates resolve-from typings to support import as syntax ( #10927 )
...
Fixes #10926
2016-09-06 22:41:47 +09:00
Paulo Cesar
7cc38a3274
revalidator: fix and update ( #10757 )
...
* fix and update
* naming convention and split the declaration for easy typecasting
* fix for nested properties
* enforce type according to the object
2016-09-06 22:32:48 +09:00
Nathan Shively-Sanders
084e559166
Merge pull request #10912 from cwmrowe/master
...
openlayers: Cluster and Source constructor and Layer.setZIndex function
2016-08-31 14:46:37 -07:00
Ryan Cavanaugh
388b9322ce
Merge pull request #10888 from BurtHarris/NodeJS.EventEmitter.6
...
Node.d.ts: trouble with new EventEmitter methods
2016-08-31 10:37:46 -07:00
Ryan Cavanaugh
1edd532192
Merge pull request #10895 from bahman616/master
...
Typing for notify.js
2016-08-31 08:56:56 -07:00
Chris Rowe
2f8791fc63
openlayers: add return type to Control.setTarget
2016-08-31 10:47:10 +01:00
Chris Rowe
221f10c7f7
openlayers: ScaleLine and Control type definitions
2016-08-31 10:42:40 +01:00
Ryan Cavanaugh
1b21ed5d2e
Merge pull request #10797 from grippstick/patch-2
...
added the enum used in requestFileSystem
2016-08-30 20:55:44 -07:00
Ryan Cavanaugh
700a23c3ac
Merge pull request #10807 from ligaz/patch-2
...
Fix withWidth return type signature to be a HOC
2016-08-30 20:44:02 -07:00
Ryan Cavanaugh
e6fe3e9d56
Merge pull request #10827 from samiraguiar/patch-3
...
Add language setting and responsive option
2016-08-30 20:43:33 -07:00
Ryan Cavanaugh
52b6221b2b
Merge pull request #10839 from aleung/pg
...
pg 6.1.0
2016-08-30 20:42:04 -07:00
Bahman Nikkhahan
4f508f62ff
Typing for notify.js fixed some bugs
2016-08-31 13:39:45 +10:00
Ryan Cavanaugh
f3bd3d811c
Merge pull request #10896 from staff0rd/master
...
matter-js updated to version 0.10.0
2016-08-30 20:39:14 -07:00
Ryan Cavanaugh
48cebdf4e2
Merge pull request #10913 from NoHomey/patch-18
...
Adding a new type definition for react-sortable-hoc
2016-08-30 20:24:03 -07:00