API reference › @evolu/common › Types › ParameterIntersection
type ParameterIntersection<T> = [T] extends [(value: infer I) => void]
? I
: unknown;
Defined in: packages/common/src/Types.ts:477
Intersects the parameter types of a union of unary functions.