10 lines
287 B
TypeScript
10 lines
287 B
TypeScript
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>
|
|
extends ForType<'generic', GenericReturn<Params>> { }
|
|
}
|