UNPKG

@redux-devtools/rtk-query-monitor

Version:
10 lines (9 loc) 286 B
import { ComponentType } from 'react'; interface Mapper<In, Out> { (inProps: In): Out; } interface MapPropsOutput<In, Out> { (comp: ComponentType<Out>): ComponentType<In>; } export declare function mapProps<In, Out>(mapper: Mapper<In, Out>): MapPropsOutput<In, Out>; export {};