feat: TypeScript typings for Dispatcher implementations

A first pass at specifying some implementations in TypeScript
  that actually compiles. It doesn't do anything, as installing
  types and operation specifications are currently dummy operations,
  but they are all invoked.
This commit is contained in:
Glen Whitney 2022-12-06 20:21:05 -05:00
parent 2a9039ac67
commit ccc6153786
14 changed files with 100 additions and 123 deletions

View file

@ -1,5 +1,4 @@
import Dispatcher from 'core/Dispatcher'
import Complex from 'complex/type'
import Specifications from 'number/arithmetic'
import {Dispatcher} from './core/Dispatcher.js'
import * as Specifications from './all.js'
export default new Dispatcher(Specifications)