typocomath/src/Complex/all.ts

10 lines
310 B
TypeScript

import {ForType} from '../core/Dispatcher.js'
import {Complex_type, typeImps} from './type.js'
export const Complex_bundle = Object.assign({Complex_type}, typeImps())
declare module "../core/Dispatcher" {
interface ImplementationTypes<T> extends
ForType<'Complex', ReturnType<typeof typeImps<T>>> {}
}