File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 11{
22 "name" : " @ryfylke-react/rtk-query-loader" ,
3- "version" : " 0.3.15 " ,
3+ "version" : " 0.3.2 " ,
44 "description" : " Lets you create loaders that contain multiple RTK queries." ,
55 "main" : " ./dist/cjs/index.js" ,
66 "module" : " ./dist/esm/index.js" ,
Original file line number Diff line number Diff line change @@ -71,7 +71,7 @@ export type InferLoaderData<T> = T extends Loader<
7171 ? X
7272 : never ;
7373
74- export type Component < P extends Record < string , unknown > > = (
74+ export type Component < P extends Record < string , any > > = (
7575 props : P
7676) => ReactElement ;
7777
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ import { RTKLoader } from "./RTKLoader";
33import * as Types from "./types" ;
44
55export const withLoader = <
6- P extends Record < string , unknown > ,
6+ P extends Record < string , any > ,
77 R extends unknown ,
88 A = never
99> (
You can’t perform that action at this time.
0 commit comments