Commit Graph

20149 Commits

Author SHA1 Message Date
Elad Zelingher
bd06aa2f50 Fixing progress field 2016-07-11 20:51:32 +03:00
Yanlong Wang
b20eb12c4c Use import for koa-mount rather than require (#10046)
Before: require("koa-mount")
After: import * as mount from "koa-mount"
2016-07-11 22:22:30 +09:00
gpicazo
ae78852d87 Update to ngstorage.d.ts (#9924)
Adds an indexer to the storage service to allow dereferencing stored data using a dynamic key value. This allows the consumer to write custom getter/setter methods. This is not currently possible if the typescript project is configured to not allow implicit Any.
2016-07-11 22:20:43 +09:00
Horiuchi_H
1c7905f8ff Merge pull request #10050 from horiuchi/update-node-fetch
[node-fetch] support `import from` syntax of ES2015
2016-07-11 19:11:50 +09:00
Horiuchi_H
d925e3f8c8 feat: support import from syntax 2016-07-11 18:40:47 +09:00
Zhengbo Li
603545ca20 Merge pull request #10038 from prashaantt/patch-3
Fix `request.raw.req` type
2016-07-11 00:10:38 -07:00
Ivo Stratev
77b1b17093 Improvement to node type definition (#10037)
case 2. Improvement to existing type definition.

From Node.js API Reference (https://nodejs.org/dist/latest-v6.x/docs/api/fs.html#fs_fs_open_path_flags_mode_callback):

fs.open(path, flags[, mode], callback)#
Added in: v0.0.2
path <String> | <Buffer>
flags <String> | <Number>
mode <Integer>
callback <Function>

Only mode is optional in open. Also instead of pure function overloads definitions can be re-written using union type annotaion for open and openSync.
2016-07-09 20:40:37 +09:00
Prashant Tiwari
36ce4b68fa Fix request.raw.req type
Per the hapi [code](https://github.com/hapijs/hapi/blob/master/lib/request.js) and [documentation](http://hapijs.com/api#request-object) the correct type for the raw http request object `request.raw.req` is actually `http.IncomingMessage` and not `http.ClientRequest`.
2016-07-09 14:51:05 +05:30
Dan Marshall
7234823908 reduce() returns Bezier[] (#10036) 2016-07-09 16:28:42 +09:00
Wang Guan
7f5ba75603 add definition for Navigator in react-native 0.29 (#10035) 2016-07-09 15:35:08 +09:00
Ivo Stratev
674f651fcb Adding missing constants from module 'constants' (#10034)
Adding missing File System constants from module 'constants'.
2016-07-09 15:34:57 +09:00
Ivo Stratev
7a6da49f3a Now it matches Node.js fs::open* definition (#10032)
From Node.js API Reference (https://nodejs.org/dist/latest-v6.x/docs/api/fs.html#fs_fs_open_path_flags_mode_callback):

fs.open(path, flags[, mode], callback)#
Added in: v0.0.2
path <String> | <Buffer>
flags <String> | <Number>
mode <Integer>
callback <Function>

fs.openSync(path, flags[, mode])#
Added in: v0.1.21
path <String> | <Buffer>
flags <String> | <Number>
mode <Integer>
2016-07-09 15:33:42 +09:00
Jeremy
22bc90a0b2 Corrects readSync by making position argument optional. (#10029) 2016-07-09 15:30:47 +09:00
Mihailescu Marian Valentin
90dc1f65a2 fix: The append function accepts ReadStreams, Buffers and strings (#10021)
* fix: The append function accepts ReadStreams, Buffers and strings

* chore: Space before and after |
2016-07-09 15:29:18 +09:00
Ryan Casperson
ead4d214f7 lodash: Add flattenDepth() for LoDashStatic (#10013)
* lodash: Add flattenDepth() for LoDashStatic

* lodash(flattenDepth): Add optional tag to depth & declare module
2016-07-09 15:28:53 +09:00
Michael Ledin
1eb1d55202 I18next: reverting default export (#10006)
* Revert "Fix i18next default export"

This reverts commit 48d8146a89.

* Revert "Fix i18next import"

This reverts commit 31a80af913.
2016-07-09 15:24:28 +09:00
Andrew Mayorov
d9e7db3b10 $animate.enabled() is also callable w/o params (#9961)
* $animate.enabled() is also callable w/o params

* Removed one overload in favour for optional parameter.
2016-07-09 15:15:15 +09:00
Nick
3d8bb21c9e Added/Updated paramater objects for S3. Also added existing S3 methods (#9886)
* Updated/Added S3 object requests and Added S3 methods

Updated and Added S3 object requests and also added a few new methods
that are available on the S3 object.

* updated callback to be optional for upload function

updated callback to be optional for upload function

* Updated as per comments

Condensed upload() down to one signature. Made params optional as they
default to an empty object according to the AWS-SDK docs.

fixed getSignedUrl signatures.
fixed spacing in S3 interfaces

* updated to be fixed with spaces instead of tabs

updated to be fixed with spaces instead of tabs

* removed unused signatures

Removed the two un-used out of date signatures in favor of the new ones.
2016-07-09 15:11:01 +09:00
Martin D
1b564b362d Update plotly.js.d.ts (#10004)
* Update plotly.js.d.ts

Improved typings

* Update plotly.js-tests.ts
2016-07-09 15:08:57 +09:00
tyfkda
86ce9329bf Update JSZip definitions for version 3 (#9822)
JSZip has changed its APIs asynchronously in version 3.0:

http://stuk.github.io/jszip/documentation/upgrade_guide.html

Replace to async method definitions:

  * `load` => `loadAsync`
  * `generate` => `generateAsync`
  * `asXXXX` => `async('XXXX')`

> JSZip.compressions has been removed.

So related tests are removed.
2016-07-09 14:59:33 +09:00
Bjørn
5f91dac715 Update IAngularBootstrapConfig in angularjs (#9935) 2016-07-09 14:51:39 +09:00
Luis Roberto Perez Rios
725c61ebdb Added new methods and properties for Reveal 3.3.0 (#9919)
* Added new both methods and properties for Reveal 3.3.0

* Updated header based on Contributors Guides

* Fixed error in type return for setState
2016-07-09 14:47:42 +09:00
James O'Cull
622c2ea735 Restify route fixes (reopen #7694) (#9918)
* Add router /routes support to Restify

* Added Restify Router render function

* Proper returns on server use/route

* Restify returns strings, not routes
2016-07-09 14:47:12 +09:00
Zhengbo Li
ea054545ee Merge pull request #10009 from pushplay/master
Added type definition for react-flexr
2016-07-08 15:39:17 -07:00
Mohamed Hegazy
b8df628bfa Merge pull request #10027 from yeiniel/master
Added missing preflightContinue option to cors type definition.
2016-07-08 14:25:46 -07:00
Yeiniel Suarez Sosa
e05967d76b Added missing preflightContinue option to cors type definition. 2016-07-08 15:27:09 -05:00
jeff
47d7f3778b Fixed inconsistent quote usage. 2016-07-08 12:36:43 -07:00
jeff
12b3f8021d Merge remote-tracking branch 'upstream/master' 2016-07-08 12:30:57 -07:00
Zhengbo Li
b09e0bd1d9 Merge pull request #10008 from micaelmbagira/add-component-key
(angular-ui-router): Add component key to IState for Angular 1.5 support since angular-ui-router@1.0.0-alpha.1
2016-07-08 11:08:41 -07:00
jeff
ec2d71a7db Merge remote-tracking branch 'upstream/master' 2016-07-08 10:48:24 -07:00
Zhengbo Li
3e7c0892c1 Merge pull request #10014 from rhysd/rc-tooltip-3.4.2
Update for rc-tooltip v3.4.2
2016-07-08 10:19:27 -07:00
Zhengbo Li
0d53925634 Merge pull request #10016 from Senorsen/patch-2
Add missing CryptoJS.mode.CBC according to doc
2016-07-08 10:17:45 -07:00
Zhengbo Li
c1e990eae0 Merge pull request #9985 from strikingly/redux-ui
Add definition for redux-ui
2016-07-08 10:08:36 -07:00
Zhengbo Li
4667dffbad Merge pull request #9988 from ccancellieri/master
introduce react-user-tour typings
2016-07-08 10:07:30 -07:00
Carlo Cancellieri
13de7e8b09 applying review changes 2016-07-08 12:23:48 +02:00
Carlo Cancellieri
519a056659 applying review changes 2016-07-08 12:17:59 +02:00
andyshuxin
76f957c28e Add header 2016-07-08 17:11:34 +08:00
Horiuchi_H
05359f14d1 Merge pull request #9972 from asvetliakov/chai-enzyme
Added definition to chai-enzyme
2016-07-08 16:46:44 +09:00
Zhang Sen
15934f58ef Add missing CryptoJS.mode.CBC according to doc
According to the doc: https://github.com/brix/crypto-js/blob/develop/docs/QuickStartGuide.wiki#block-modes-and-padding
2016-07-08 12:14:33 +08:00
rhysd
94d8715b8b Update for rc-tooltip v3.4.2 2016-07-08 12:26:48 +09:00
Zhengbo Li
448b1ab712 Merge pull request #9993 from urossmolnik/master
elasticsearch: added existsType and putMaping
2016-07-07 16:32:21 -07:00
Uros Smolnik
9878f5ecee elasticsearch: expandWildcards type 2016-07-07 15:17:28 -07:00
jeff
015f48d344 Fixing compilation with --noImplicitAny flag. 2016-07-07 08:59:30 -07:00
jeff
7c4fef450c Added comments to the d.ts. 2016-07-07 08:54:46 -07:00
jeff
e53121cd90 Added type definition for react-flexr 2016-07-07 08:42:20 -07:00
Micaël Mbagira
b38cd68fe2 Add component key to IState
Since beta.1, you can set `component` if you are using Angular 1.5 (component syntax)
2016-07-07 13:32:37 +02:00
Carlo Cancellieri
36ba626f58 Include all the optional arguments and comments 2016-07-07 12:07:31 +02:00
andyshuxin
97dca788c6 Add semicolons 2016-07-07 17:39:58 +08:00
Carlo Cancellieri
f5790919f2 fix spacing (4 spaces). Implement the test. Add reference to react.d.ts 2016-07-07 10:36:54 +02:00
Zhengbo Li
7ce2630b07 Merge pull request #9974 from asvetliakov/react-motion-slider
Added definition for react-motion-slider
2016-07-07 01:13:49 -07:00