* [jquery] Match parameter names to documentation more closely.
* [jquery] Add documentation to parameters.
* [jquery] Fix `TContext` declaration on wrong value's type.
Declaring `this` as `TContext` on the input function ensures that it can handle having its context changed to `TContext`. Declaring `this` on the output function is not important because the function will be already defined. It can also get in the way when passing a callback to a function whose callback parameter has `this` declared.
* [jquery] Drop constraint from `TContext`.
It's not really necessary and it is possible to pass primitives as the context.
* Created types for nwmatcher
* Rename class -> className, fix tests
* Remove duplicate test case
* Added global namespace for accessing global matcher
* Moved tests to test folder, added separate global and module test files
* [pouchdb-core] Fix Blob interface by including dom
error TS2304: Cannot find name 'Blob'
* [pouchdb-core] duplicate Blob interface inline (#1)
Forward declare Blob instead of using a triple-slash directive.
/// <reference types="dom"> looks for 'dom' in Definitely Typed, but the 'dom' lib is built into TypeScript.
The types `Options` and `MultiOptions` as well as `OpenReturn` and
`ShareSingleReturn` are taken directly from
7535726eb4/index.js
and have only have been transformed to interfaces.
The signature of the `shareSingle` call is missing `social` in the
official repo as well, but from the native code it becomes apearent that
it is required: 7535726eb4/ios/RNShare.m (L85-L122)
* fix eth.getBalance return type
* fix callback return type too
* docs are wrong, should be BigNumber
* added overload and tests
* correct optional params to be non-optional, add tests
* Type definitions for meteor/react-meteor-data
* Fix TypeScript Version
* Fix "JSX element type does not have any construct or call signatures" error
* Tune some types.
* Fix tslint errors.
* Fix no-unnecessary-generics
* Move react-meteor-data.d.ts under meteor folder.
* Fix intends
* Fix import typo.
* added astring definitions
workstream:
* fixed linting
workstream:
* updated index.d.ts
added comment
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
to fix test build
* updated tslint.json
workstream:
* added global scope support and removed redundant export
* fixed missing semicola.
* moved global test to own file.
* cleaned tslint.json
workstream:
* tslint.json: removed custom rules
probably fixes necessary, but local build does not produce any linting
errors...
workstream:
* tslint fixes
workstream:
* fix import
workstream:
* removed import in global test.
* [jquery] Split `JQueryStatic` into its own file.
* [jquery] Split `JQuery` into its own file.
* [jquery] Split `JQuery` namespace into its own file.
* [jquery] Split legacy types into their own file.
* [jquery] Remove hard line breaks from documentation descriptions.
WebStorm treats line breaks in descriptions as line breaks when rendering descriptions in tooltips. This causes unintentional early wrapping of text.
* [jquery] Remove extra line after descriptions.
* [jquery] Audit lint rules.
* [jquery] Improve documentation for API methods which have had their signatures unified.