LendAndRegret/node_modules/es-toolkit/dist/compat/_internal/ConformsPredicateObject.d.mts
2026-05-02 17:27:43 +08:00

6 lines
147 B
TypeScript

type ConformsPredicateObject<T> = {
[P in keyof T]: T[P] extends (arg: infer A) => any ? A : any;
};
export type { ConformsPredicateObject };