* Fix InferableComponentEnhancerWithProps type inference for StatelessComponent
The inferred component should require the difference of props supplied by connect
and props needed by the component to be passed during render.
* Remove ambigous bidirectional type inference
* Adding definations for fastGet, fastPut in ssh2-sftp-client
* Adding proper ssh2-streams typing for ssh2-sftp-client functions fastGet and fastPut
* Adding type for return value of fastGet and fastPut
* Lodash: `fp.pickBy`: add failing type guard test
* Lodash: `fp.pickBy`: use generic for property value instead of generic to fix FP test
* Lodash: update generated typings
* Lodash: `fp.pickBy`: add overload for user-defined type guard with `NumericDictionary`
* Lodash: update generated typings
* Correct `predicate` type of `pickBy`
* Lodash: update generated typings
* Rename `ObjectIteratorTypeGuardWithoutCollection` to `ValueKeyIterateeTypeGuard`
* Lodash: update generated typings
* Constant `userDefinedTypeGuard`
The documentation gets weird about the API promising to return *some* kind
of value that evaluates to false, even if that might be the number zero.
The original types author expressed that as CouchbaseError | number, but
that makes it seem like the result could be some non-zero number.
I don't know whether the library actually issues callback(0) calls, but to
make it play better with normal callbacks (err?: Error), we will act as if
it uses null instead of zero.
* Add Firehose to aws-lambda
* Add one more link for reference
* Change some interface names, remove irrelevant S3 interface, add special callback
* Fix tests
* The function withInfo in @storybook/addon-info should be able to accept no arguments.
* The function withInfo in @storybook/addon-info should be able to accept no arguments.
* The function withInfo in @storybook/addon-info should be able to accept no arguments.
* Corrected the version number of @storybook/addon-info. This type definition was only tested with version 3.4.8 of @storybook/addon-info
* Corrected the version number of @storybook/addon-info. This type definition was only tested with version 3.4.8 of @storybook/addon-info
* fixed missing static modifier
* Set correct version
* Padded version number to be internally safe.
* Updated version to match desired MAJOR.MINOR format from DefinitelyTyped
* fixed test to match types
* replaced inline-docs with references to documentation-website and fixed formatting to prevent linting issues
* upgradedto new version of api + replaced docs with links to docs
The documentation for [URLSearchParams.forEach][1] shows that the
callback function will be called with 3 parameters. This has been true
since Node 6. This commit adds a definition for the 3rd parameter to
the definition files for Node 6, 7, 8, 9 and 10.
[1]: https://nodejs.org/api/url.html#url_urlsearchparams_foreach_fn_thisarg
* Allow specifying multi-column whereIn clauses
* Allow subqueries and callbacks in WhereIn interface
* Use Value instead of string for values
* Use union type to make WhereIn more concise
Also remove duplicated WhereIn interface