Per the documentation, `views` accepts an object hash of either booleans
or React components that implement static `title` and `navigate`
functions.
This corrects the types to match.
* [relay-compiler] Add requirements for relay-compiler-language-typescript
Also ran prettier.
* [relay-compiler] See if adding dom types fixes test
* [relay-compiler] Fix linter failures.
Contextual signature instantation now catches the fact that thunkify
would have produced an `any` during execution and now produces `unknown`
instead. This breaks a test that expects the result of `thunkify` to be
number. I changed the test to expect `unknown`, which is what `thunkify`
produces when compiled with `typescript@next`.
* move 'filter' tests to separate file
* move 'find' tests to separate file
* move 'findIndex' tests to separate file
* move 'findLast' tests to separate file
* move 'findLastIndex' tests to separate file
* move 'flatten' tests to separate file
* move 'flip' tests to separate file
* move 'forEach' tests to separate file
* move 'fromPairs' tests to separate file
* move 'groupBy' tests to separate file
* move 'groupWith' tests to separate file
* move 'gt' tests to separate file
* move 'gte' tests to separate file
* move 'has' tests to separate file
* move 'hasIn' tests to separate file
* move 'hasPath' tests to separate file
* move 'head' tests to separate file
* fix bugs with types
* fixed type errors
* more type errors fixed
* fixed errors and added missing type definitions
* fix all typos and added all missing ones
* change inappropriate names
* Updated names to be more accurate.
* adds EnumDWT_ConvertMode to make compatible with the old enum
* update to 14.2
* add v13
* delete v13 for test not pass
* remove base64
* fixed conflict
* add back GetLicenseInfo
* change header version to 14.2
* Added definitions for new APIs as well as APIs whose definitions were missing before. Also adding APIs for addons
* remove unused file
* adding types for barcode reader and changing the copyright year
* comment change, TS to 3.2.2
* adds more definitions to dwt barcode reader
* rollback
* update
* update index.d.ts
* Update Dynamsoft.d.ts
It's ok
* Update index.d.ts
1. update 2017 -> 2019
2. update parameters
* Update index.d.ts
rollback
* Update index.d.ts
rollback
* Update addon.pdf.ts
rollback
* Update index.d.ts
rollback
* Update index.d.ts
rollback
* Update index.d.ts
rollback
* Update index.d.ts
rollback
* Update index.d.ts
no changes but whites
* Update index.d.ts
TypeScript Version can be 3.2
2017 => 2019
* Update index.d.ts
rollback
* update
* Update index.d.ts
start new request
* Update index.d.ts
delete this file
* Update
delete this file
* a
a
* rollback
* update
* remove package.json
* add current version to v13
* 1) update to version 14.3.1
2) change index.d.ts declare Dynamsoft
* update comments
* remove WebTWAIN.d.ts
* change v13 tsconfig.json
* change to v14.3.1
* change to v14.3.1
* change to version 14.3
* change to version 14.3
* update
* update
* Update index.d.ts
* Update index.d.ts
* Update tsconfig.json
* Update tsconfig.json
* update
* update
* aa
* a
* a
* update
* remove dwt.d.ts
* remove v12
* update1
* update
* update
* a
* a
* a
* a
* a
* a
* a
* a
* d
* a
* a
* b
* d
* d
* d
* d
* d
* d
* d
* d
* d
* d
* d
* d
* d
* d
* d
* d
* d
* d
* d
* d
* d
* d
* d
* d
* d
* d
* d
* d
* d
* d
* d
* d
* change to v15
* add enums
* remove enums
* Updating to v15.0.2
* roll back to 1 previous version
* add back v15 APIs
* fix errors
* fix errors attempt 2
* update to 15.1
* upgrade to v15.2
add tag image
* Add tests to underscore for some missing aspects of _.template
* Add CompiledTemplate interface and fix _.template in underscore
* Make the linter happier with underscore
* update apple-mapkit-js types to 5.18
also add docs/comments
* apple mapkit is not on NPM
* fixing tests
* Update index.d.ts
* Update tslint.json
* Update tslint.json
* revert removal of rules so checks pass.
* add setAgent method annotations for dialogflow v2
* add string union types and set agent overload
* use string union types instead of enums for ApiVersion and Tier
* add method overload for calling setAgent with callback only and no options object
* add method overloads; add missing delete method
* adds method overloads to agents client for passing the callback as second arg
* add missing deleteAgent method
* add missing projectPath method
* add missing matchProjectFromProjectName method
* add double quotes; add tslint avoid-escape to enforce
* remote double quote enforcement
MapTypeId as of #38084 is defined as a string enum, but all uses of
MapTypeId were accidentally left as ``MapTypeId | string`` which looses
type information.
I updated returns to be strictly MapTypeId, but input still seems to need
to be ``MapTypeId | string`` because the TypeScript compiler seems to not
recognize that a string with the proper value is a MapTypeId without
casting it as such. Changing this would break all consumers and does not
seem to make sense to do.