* [fabric] Upgrade the types from fabric v3.5.0 to v3.6.1 (1)
- Add targets property to ICanvasOptions interface
* [fabric] Upgrade the types from fabric v3.5.0 to v3.6.1 (2)
- Update subTargetCheck JSDoc description
* [fabric] Update Definitions by list
* Make .toPromise return an instance of the type passed in
* Make filter respect type guards
* Fix toPromise tests for old typescript versions
* Add another test for highland filter
* Add types for zingchart
* Adds content header to zingchart
* Fixes typedef extends for lint
* Fixes version, import, and empty jsdoc comments
* Removes last empty jsdoc comment
* Allows values and series types to be arrays
* Fixes values type
* [mustache] Add `TemplateCache` and .templateCache introduced in v4.0.0
These changes reflects the template cache customisation introduced in
mustache v4.0.0.
* [mustache] .to_html was removed in v4.0.0
This aligns definition of the `onAfterOpen` callback function with
changes introduced here:
reactjs/react-modal#741
that is optionally typed object containing references to the overlay and
content elements.
Thanks!
* [conventional-commits-parser] Added type definitions for conventional-commits-parser
* [git-raw-commits] Added type definitions for git-raw-commits
* [conventional-commits-parser] Updated conventionalCommitsParser.Commit
* [conventional-changelog-writer] Added type definitions for conventional-changelog-writer
* [conventional-changelog-writer] Updated conventionalChangelogWriter.Options.Sort
* [conventional-commits-parser] Removed spaces
* [conventional-changelog-writer] Fixed typing
* [conventional-changelog-writer] Updated generics
* [conventional-changelog-writer] Updated names of interfaces and types
* [conventional-commits-parser] Updated tests
* [conventional-changelog-core] Added type definitions
* [conventional-changelog-preset-loader] Added type definitions
* [conventional-recommended-bump] Added type definitions
* [conventional-changelog-core] Relocated `// $ExpectType`; altered the name of the namespace
* [conventional-changelog-preset-loader] Altered the name of the namespace
* [conventional-commits-parser] Altered the name of the namespace
* [conventional-recommended-bump] Altered the name of the namespace
* [conventional-changelog-core] Removed the extra `// $ExpectType`
* [conventional-changelog-core] Added `recommendedBumpOpts` to `conventionalChangelogCore.Options.Config.Object`
* [conventional-changelog-core] Updated some generics
* [conventional-changelog-preset-loader] Added `conventionalChangelogPresetLoader.Builder`
* [conventional-changelog-config-spec] Added type definitions
* [conventional-changelog-core] Rearranged `import`s
* [conventional-changelog] Added type definitions
* [standard-version] Added type definitions
* [conventional-changelog-config-spec] Added `OTHER_FILES.txt`
* [conventional-changelog-config] Updated `OTHER_FILES.txt`
* [conventional-changelog-preset-loader] Removed default value for some type parameters
The PR that adds rdf-transform-triple-to-quad conflicts with the
recent change to rdf-js, but both were merged about the same time, so CI
didn't catch the conflict.
* Update react-simple-maps geography type from object to any
the object type is too restrictive, forcing people to use any in their code. The geography prop comes through as a very complex object, and using the object type prevents you from using it properly. If we want to allow any geography type (I am not sure if they vary by map, but I assume they would), we should type it as any, not as object.
That being said, I would happily contribute my type definition for geography if it is the same across all maps provided.
* update any to unknown
* unknown back to any for TypeScript 2 support