* Started adding types.
* Missed these changes.
* Adding types.
* Should be good.
* Should be good to go.
* Updated prettier formatting.
* Updated prettier formatting.
* Updated prettier.
* Changed to ReadonlyArray.
* Modified as per review.
* Modified with other recommended changes.
* fix for error enum declaration
- moved error enum declaration outside of Parse context
- changed `const enum` to `declare enum`
- added static vars for enum fields to Error class
* added test for errors
* added xml-c14n typing
* reworked tests; added test run to package.json
* formatting fix
* removed package.json
* added info
* fixed errors
* rewrote typing
* reworked version
* added compile flag
* corrected export
* corrected export
* corrected tsconfig
* set noImplicitAny to false
* set other options to false
* returned back options which were turned off by mistake
* fixed typing according to review comment
* 17.2.0.34 added
* Added non-npm package
* Removed space
* added new line
added ew line
* Changed the word
* 17.2.0.46 added
* Removed blank line and added non-npm entry
* changed Encoding format
* 17.3.0.9-beta added
* added npm packages
added npm packages
* added npm packages
* format changes
* format changed
format changed
* Format changed to ANSI
* Update mongoose-paginate & mongoose-paginate-v2 populate types
* Add QueryPopulateOptions
* Upgrade typescript to 2.8 as the tslint does not succeed with the 2.3
Previously, it used process.Readable/Writeable. But its tests show that the
constructor is meant to take process.stdin, which is a ReadStream. Until
recently, the two types were mistakenly assignable. Now that they are
not, I think the type should be ReadableStream, which is a common
supertype of process.Readable and ReadStream.
Decoder can be built standalone (is part of the actual public interface
and part of the performance-test interface described in the README.md of
the project). Moreover, Decoder is an event emitter. The interface has
been update accordingly.
* Update index.d.ts
Member "locale" of interface "JsonDataHeader" was renamed to "language".
* Update gettext.js-tests.ts
Updated test according to type definition changes.
* Updated version number to 0.8
* Move Func helper to jasmine namespace
* Move ImplementationCallback to jasmine namespace
* Align tests between different versions
* Fix typings for spyOnAllFunctcions
* Improve typing for function matchers
* Refactor AsymmetricMatcher to handle all cases
* Enhance basic expectation docs and typing
Improve toBe(), toEqual(), toMatch(), toHaveClass()
documentation to avoid confusion around them.
* Enhance any() and anything()
* Add missing typing for non-named spy object
* Specify that jasminewd2 depends on jasmine v2
The jasminewd2 library supports jasmine 2 only,
therefore point typings to the correct reference.
* Add NonTypedSpyObj for complex scenarios
* Improve tool for spy names extraction
* Remove undefined Any property from matchers
* react-helmet: remove default export
This package does not have a default export.
* react-helmet-async: bump typescript version
This depends on react, which has typescript version 2.8, so this
package has to be updated to match.
The error tries make sure you don't use a truthy check on a function
instead of calling. But the code in the tests is in fact checking for
the presence of the function.
The callback function of `web3.eth.subscribe` is a `Callback` but the type is not i.e. a `Subscribe<BlockHeader>`, it is a plain `BlockHeader`. This fix applies to all the subscription types.