2022-12-22 15:04:12 +01:00
|
|
|
import { ForType } from '../core/Dispatcher.js'
|
|
|
|
import { GenericReturn } from './type.js'
|
|
|
|
import * as generic from './arithmetic.js'
|
|
|
|
|
|
|
|
export { generic }
|
|
|
|
|
|
|
|
declare module "../core/Dispatcher" {
|
|
|
|
interface ReturnTypes<Params>
|
2022-12-22 11:05:39 -05:00
|
|
|
extends ForType<'generic', GenericReturn<Params>> { }
|
2022-12-22 15:04:12 +01:00
|
|
|
}
|