* autoprefixer: updated to match postcss Plugin types for postcss 7.x types, resolve error with Transformer type
* #29357: Renamed autoprefixer.AutoprefixerOptions to autoprefixer.Options
* [styled-components] Upgrade to 4.0.0
* [styled-components] Remove 2.9 dependent test, lower ts version
* [styled-components] Add ThemeConsumer
* [styled-components] Remove unused import in test
* [styled-components] Add v3 typings
* [styled-components] Fix themed keyframes return type
* Loosen up type for as prop, add extra test case
* Remove unnecessary generic prop
* Bunyan types: RotatingFileStream type added, tests updated
* Bunyan types: RotatingFileStream type added, tests updated part2
* Change after review remarks- path should not be optional field in RotatingFileStream
* Definitions for strophe.js, as suggested in PR #27682.
* [strophe.js] Make all 'Function' types from muc.d.ts more specific.
* [strophe.js] enable as many lint rules as possible.
* [strophe.js] fix the headers.
* [strophe.js] More cleanup to enable more tslint rules.
* Add types for Theo package
* Remove strings and Theo interface
* Fix tests
* Remove string type from Transform union type
* 'OutputFormat' -> 'Format'
* Update utils.d.ts to include `isHexStrict` method
As per the documentation in beta 36, there is a method `isHexStrict` method that checks if the passed string is hex and additionally starts with the '0x' prefix.
* Restrict parameters to number or string in `isHexStrict`.
* Remove superfluous string type in `isHexStrict`
* `isHexStrict`: add test case for number
Some of the Detox types were broken when testing on the example snippets
included in the docstrings. These changes fix the tslint errors to the newly
added tests.
this might be a build breaking change for some users of "first" in strict null checking mode, albeit one with an easy fix:
if you are sure that having zero returned rows is impossible, just add an exclamation mark to ignore the null check like this: r.first().!get(0) or just perform a proper check..
Allow JSX Elements as added types for title/message properties of the Notification interface. This will allow custom html tags like spans and divs with more control over the notifications' appearance, as is possible in the js module.
According to https://threejs.org/docs/#api/en/core/Raycaster, the raycaster returns an object which contains a property called 'uv' which is a Vector2 object. This commit adds this to the typings to reflect this.
* Repo has a support for chai-fs. My pull request doesn't covers this
combination:
expect(path).to.be.a.file(msg).with.contents.that.match(/xyz/, msg);
* Remove blank line, downgrade typescript version to 2.0.0 and
strictNullChecks are equal to true.
* Fix build issue with typescript verion.
* Remove "v" from version.
* Typescript version should be: 2.2
* fix lint issues
* [jquery] Introduce interface for `jQuery.fx`.
* [jquery] Attach `jQuery.Deferred` documentation to correct symbol.
* [jquery] Convert `jQuery.Callbacks` to an interface.
This change is purely for consistency with similar properties (e.g. `jQuery.Deferred`, `jQuery.Event`).
* [jquery] For `JQuery`, reduce examples to only those relevant to the overload and use shorter template for code-only examples.
* [jquery] For `JQueryStatic`, reduce examples to only those relevant to the overload and use shorter template for code-only examples.
* [jquery] For `JQuery.Event`, reduce examples to only those relevant to the overload and use shorter template for code-only examples.
* [jquery] For `JQuery.Callbacks`, reduce examples to only those relevant to the overload and use shorter template for code-only examples.
* [jquery] For `JQuery.PromiseBase`/`JQuery.Deferred`, reduce examples to only those relevant to the overload and use shorter template for code-only examples.
* [jquery] Consistent ordering.
* [jquery] Add `jQuery.getScript(options)`.
See https://github.com/jquery/api.jquery.com/issues/1052.
* [jquery] Fix documentation for this one overload of `jQuery.proxy`.
* [jquery] Accept `Document`, `Window`, and `JQuery.PlainObject` for the `element` parameter of Data APIs.
See 354f6036f2/test/unit/data.js (L142-L164) and https://github.com/jquery/api.jquery.com/issues/1035.
* [jquery] Add `jQuery.cleanData`.
See https://github.com/jquery/api.jquery.com/issues/996.