* [sortablejs] create checkPull and checkPut options
* [sortablejs] create oldDraggableIndex, newDraggableIndex and pullMode options
* [sortablejs] recreate put function again
* remove from in pull function
* [sortablejs] add plugin class to exports.
* Added typings for datadog-winston
* Updated comments
* Fixing comments which will also kick the Git checks
* Apparently I can't have a PATCH in my version. I thought this was supposed to be the version of the JS package my types target
* Ahh I see now, it is the version of the JS package, just with PATCH omitted
* Updated library to use CommonJS style imports
* Formatting
* Fixing to not use a declare module
* Fixing whitespace
* Fixed typo
* Adding options into a namespace so it can be referenced by consumer
This allows for spreading an `SxStyleProp` object inside a new object and merging in other
properties before passing to `sx`, like so:
```
sx={{ ...someSxStylePropObj, background: 'red' }}
```
I believe this simplification is now possible due to changes made to the `SystemStyleObject` type
in `@styled-system/css` since these types were initially created.
* react-widgets: fix busySpinner missing from typing
Per https://jquense.github.io/react-widgets/api/DropdownList/, busySpinner is a valid type
* Update definitions by comment
* Bumping version to sync with a specific react-widgets function
* [@types/ioredis] hgetall returns object
changed type of hgetall result from string[] to object
* hgetall returns { [key: string]: string | number }
changed hgetall result type from object to { [key: string]: string | number }
* Initial commit autogenerated with dts-gen
* Add public functions to Diva class
* Add Settings definition.
* First attempt at adding Events
* Apply linting, fix default export to include class and Events
* Simple tests
Ensure the Diva class constructor exists along with the Events class.
Check that Diva class functions work.
* Move interfaces to separate file.
* Set members of Diva class.
* Add Region and Dimensions interfaces.
* Add definition for Viewport class
* Add Offset interface
* Add DocumentLayout class
* Move interfaces to interfaces.d.ts
* Add types for Renderer class
* Add ViewerCore class types, use in index.d.ts
* Move Settings type declaration to interfaces.d.ts
* Add settings member to Diva
* Change ViewerState.renderer type from object to Renderer
* Type of ViewerState.viewport from object to Viewport
* Use global import in tests.
* Add ImageManifest class.
* Replace XMLHttpRequest with Promise<Response>
Diva.js uses fetch(), which returns a Promise<Response>.
* Add types for the ViewHandler
* Properly type members of Viewport
* mongoose-paginate-v2: support read opts for determines the MongoDB nodes from which to read.
* mongoose-paginate-v2: sync package version
* mongoose-paginate-v2: fix version
* mongoose: fix docstring typo
* More support for partial update with Plotly.restyle
* marker symbols can be string or numbers
Plotly documentation do not match their behavior here
* Allow to change axis title in plotly.relayout
Azure Cosmos DB with Gremlin API does not support fluent API yet, it was further postponed to first half of 2020.
As a workaround, we are using the translator to submit fluent api queries as 'script'.
However, we cannot initialize a translator that works with Azure's CosmosDB based based on an AnonymousTraversalSource or GraphTraversalSource, this type must allow for the 'string' possibility.
The correct usage with Azure's cosmos db is:
```
const translator = new gremlin.process.Translator('g' as any);
```
Currently this works.
Related stackoverflow thread:
https://stackoverflow.com/questions/58815569/azure-cosmos-gremlin-nodejs-how-to-submit-fluent-query-as-script-not-bytecod/59056304#59056304