DefinitelyTyped/types/quill
Daniel Kucal 6090a81c7d Extend Quill Key.key type (#38713)
It's common to use numeric keycode, especially when we need to access any element of `keyboard.bindings` directly.
Casting to string like:
```
enum KEYS = {
    UP: 38,
    DOWN: 40,
};

keyboard.addBinding({
  key: KEYS.UP.toString(),
  // ...
});
```
does *not* work, so `number` should be allowed as well.
2019-10-07 16:29:19 -07:00
..
index.d.ts
package.json
quill-tests.ts
tsconfig.json
tslint.json