According to official docs the settings for setupMaster settings are just the ClusterSettings.
There is an ClusterSettings interface already but setupMaster function parameters refered to incomplete and unnecessary ClusterSetupMasterSettings. I deleted the ClusterSetupMasterSettings interface and refer to the existing ClusterSettings which are correct.
https://nodejs.org/docs/latest-v8.x/api/cluster.html#cluster_cluster_setupmaster_settings
* Update insight for recent changes
updates the constructor options with `pkg`, which is now preferred over `packageName` and `packageVersion`.
adds `trackEvent()` method
* update insight test
The Ports field is a map of string to _array_ of Ip/Port objects, as you
can see in the docs: https://docs.docker.com/engine/api/v1.32/#operation/ContainerInspect
As a result of this error type checks are not being run. e.g. Doing
`container.inspect().NetworkSettings.Ports['test'][0].BadField` will
compile without error, despite `BadField` to existing in the interface.
* tabs to spaces
* [node] improve typing of query.parse()
* Update according to review:
- Better naming UrlParsedQuery => UrlWithParsedQuery, UrlStringQuery => UrlWithStringQuery
- replace Url type by UrlWithParsedQuery | UrlWithStringQuery
* Re-introduce url.Url as it is used by several other modules.
* [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.