* [react-infinite-scroller] fix TS2497
I get this error when importing the module with `import * as InfiniteScroll from 'react-infinite-scroller`:
Error:(9, 33) TS2497: Module '".../@types/react-infinite-scroller/index"' resolves to a non-module entity and cannot be imported using this construct.
This PR fixes that error by merging the exported class with an empty namespace.
* revert accidental formatting change
* Update index.d.ts
Since the command property of a GridColumn can be an array of strings, for example:
{ command: ["edit", "destroy"], title: " ", width: "250px" }
The current definition is
command?: GridColumnCommandItem[];
but it should be
command?: (string|GridColumnCommandItem)[];
* Update index.d.ts for Kendo-UI GridColumn definition
Additional update for command property of GridColumn - following documentation at https://docs.telerik.com/kendo-ui/api/jsp/grid/column-commanditem
* recharts: add some missing label definitions to BarProps XAxisProps and YAxisProps
* doc: Link to the recharts documentation regarding the label property in BarProps, XAxisProps and YAxisProps
The following code snippet would work nicely with the fix:
import * as Velocity from 'velocity-animate';
Velocity.animate(...);
Otherwise, TypeScript throws the following error:
TS2307: Cannot find module 'velocity-animate'.
* @types/yargs wrap should accept null parameter
According to the yargs documentation, `.wrap()` accepts null to mean "no wrapping"
* increase version number for @types/yargs
* reverts deadf8d829904d6e780e64b1963f0c26c66245b2
* Add typings for Spotify Web Playback SDK (Beta)
More info at: https://beta.developer.spotify.com/documentation/web-playback-sdk/
* Configure strictFunctionTypes
* Use const instead of let
* Add missing Window event handler
* Convert SpotifyPlayer to class
* Add missing version
* Add missing semicolon
* Fix definitions by header
* added two overload typings for cache-manager which return a Promise
* also add overload method for get,set,del to return a promise
* make extra argument required
Kendo documentation specifies number as configuration for categoryAxis.title.margin
categoryAxis.title.margin Number |Object (default: 5)
The margin of the title. A numeric value will set all margins.
* Update index.d.ts for PaymentRequestButtonElement
Update the type definitions to support the PaymentRequestButtonElement in react-stripe-elements as currently they are outdated.
* Fix lint errors
* Update JobStatus type to be compatible with all Queue methods
The docs for Bull suggest that methods can take `waiting` as a valid JobStatus but this is incorrect.
For example [here](https://github.com/OptimalBits/bull/blob/master/lib/queue.js#L995) the `.clean` method will fail when trying to clean the status `waiting`. This should be changed to `wait` but is currently incompatible with the typings here
* use `// tslint:disable-next-line` instead of `// tslint:disable`
* Optimize type of params by Union Types
* Avoid variable name of parameter clashes with keyword/type
writeCString()
* Add tslint.json
* tsconfig: turn strictNullChecks on
* Use const instead of var
* Use arrow function
* Update by new-parens
* Update for object-literal-key-quotes
* Update semicolon
* types: use object instead of Object
* types: use object instead of Object
* types: merged by union types
* Use const instead of var
* tsling: no-consecutive-blank-lines max 3
* Fix dt-header by 0.1
* Add '// TypeScript Version: 2.2' under header
* Fix for trim-file
* Update for prefer-declare-function
* tsling: turn ban-types off for use of 'Function'
* Update definition of Library
* Remove `@overide` tag