UNPKG

type-plus

Version:
7 lines (5 loc) 166 B
export type ChainFn<T> = (param: T) => T /** * An endofunctor is a functor from one category back to the same category. */ export type EndoFn<T> = (param: T) => T