* Added definitions for protoo-server
* Converted class to interface for Peer & WebSocketTransport
* Added public properties & methods for WebSocketTransport interface
* Allow JWS headers to be string[], number or undefined
* Use readonly array for JWS header string[]
* Specify RFC-registered header parameters
* Fix lint
* Use readonly arrays
* Switch to using interfaces
* Fix lint
* feat(mz): Update to v2.7
* fix(mz): Keep support for TypeScript 2.0
* fix(mz): Add myself to the contributors list
* test(mz): Refactor tests to remove override in `.editorconfig`
* chore(mz): Remove `.editorconfig` 😡️
* fix(mz): Fix name of `dest` parameter in `fs.copyFile(…)`
* refactor(mz): Remove need for setting `"unified‑signatures": false`
* [@types/blessed] Allow additional properties for `IOptions` interface
This change allows for arbitrary properties to be stored
onto the options object of `Node` instances. This is useful
for extra metadata to be stored onto a node and is accessible
on the `node.options` property.
For example, the `blessed-css` module utilizes the additional
properties `id` and `className` for matching CSS selectors:
```typescript
const bg = blessed.box({
parent: screen,
id: 'bg'
});
```
* Add test
* Add to authors
* re-remove 'move' and 'none' tests from ramda-tests.ts
* move 'not' tests to separate file
* move 'nth' tests to separate file
* move 'nthArg' tests to separate file
* move 'objOf' tests to separate file
* move 'of' tests to separate file
* move 'over' tests to separate file
* move 'pair' tests to separate file
* move 'partial' tests to separate file
* move 'partialRight' tests to separate file
* move 'partition' tests to separate file
* move 'path' tests to separate file
* move 'pathEq' tests to separate file
* move 'pathOr' tests to separate file
* move 'omit' tests to separate file
* move 'once' tests to separate file
* move 'or' tests to separate file
* move 'o' tests to separate file
* move 'pathSatisfies' tests to separate file
* move 'pick' tests to separate file
* move 'pickAll' tests to separate file
* move 'pickBy' tests to separate file
* Fix nullabily of usePaginationFragment to match that of useFragment
* usePaginationFragmanet: add test for the non-null case
* Fix nullabily of useBlockingPaginationFragment to match that of usePaginationFragment
* Stop relying on old versions of dependencies
gulp-connect *apparently* works with gulp 3 or 4, but the examples on
the homepage are written for gulp 3. I updated them minimally to work
with gulp 4 -- its types at least.
auth0.widget depends on auth0-js which now uses modules. I switched to
import types and updated the type names.
* require 2.9 for auth0.widget
It would like to reference v7, but it does so with a triple slash
reference:
```ts
/// <reference types="auth0-js/v7" />
```
This reference doesn't work in the shipped version of auth0.widget.
The full fix for this is to all package.json references to
`@types/auth0-js@7`, but this isn't needed to fix this particular
problem because just referring to the current version works fine:
```ts
/// <reference types="auth0-js" />
```
* Export namespace to expose props type defs
It would be nice to expose the props type definition which would allow users to extend the original component.
* Update version to 1.0.0-alpha
Seems like the interface haven't changed at all with the bump to 1.0.0-alpha
* Fix lint errros
* Remove the ReactLinkify namespace
* Update setPrivacySettings place in interface
I placed this in the wrong spot in the git editor.
My bad.
* Adding a test for the functionality
* newline at end of file