export type InferType = T extends infer R ? R : any; export type InferDOMType = T extends CSSStyleDeclaration ? Partial : T extends infer R ? R : any; export type MergeTypes = { [key in keyof A]: key extends keyof B ? B[key] : A[key]; } & B; //# sourceMappingURL=infer.type.d.ts.map