UNPKG

react-with-hoc

Version:

Work with React and HOCs (Higher-Order Components)

4 lines 248 B
import { ComponentProps, ComponentType } from "react"; import { Simplify } from "./Fn"; export type PartialComponent<T extends ComponentType<any>> = ComponentType<Simplify<Partial<ComponentProps<T>>>>; //# sourceMappingURL=PartialComponent.d.ts.map