File tree 7 files changed +406
-540
lines changed
7 files changed +406
-540
lines changed Original file line number Diff line number Diff line change 24
24
"husky" : " ^8.0.3" ,
25
25
"npm-run-all" : " ^4.1.5" ,
26
26
"semantic-release" : " ^22.0.12" ,
27
- "turbo" : " ^1.12.4 " ,
28
- "typescript" : " ^5.3.3 "
27
+ "turbo" : " ^1.12.5 " ,
28
+ "typescript" : " ^5.4.2 "
29
29
},
30
30
"prettier" : {
31
31
"arrowParens" : " avoid" ,
Original file line number Diff line number Diff line change 46
46
},
47
47
"devDependencies" : {
48
48
"@types/mdx" : " ^2.0.11" ,
49
- "@types/react" : " ^18.2.55 " ,
50
- "@types/react-dom" : " ^18.2.19 " ,
49
+ "@types/react" : " ^18.2.65 " ,
50
+ "@types/react-dom" : " ^18.2.22 " ,
51
51
"@types/semver" : " ^7.5.7" ,
52
52
"autoprefixer" : " ^10.4.18" ,
53
53
"postcss" : " ^8.4.35" ,
54
54
"prettier" : " ^3.2.5" ,
55
- "prettier-plugin-tailwindcss" : " ^0.5.11 " ,
55
+ "prettier-plugin-tailwindcss" : " ^0.5.12 " ,
56
56
"remark-mdx-images" : " ^3.0.0" ,
57
57
"shikiji" : " ^0.10.2" ,
58
- "typescript" : " ^5.3.3 "
58
+ "typescript" : " ^5.4.2 "
59
59
},
60
60
"postcss" : {
61
61
"plugins" : {
Original file line number Diff line number Diff line change 27
27
},
28
28
"devDependencies" : {
29
29
"@types/node" : " ^20.11.19" ,
30
- "@types/react" : " ^18.2.55 " ,
31
- "@types/react-dom" : " ^18.2.19 " ,
30
+ "@types/react" : " ^18.2.65 " ,
31
+ "@types/react-dom" : " ^18.2.22 " ,
32
32
"@types/semver" : " ^7.5.7" ,
33
33
"@types/webpack" : " ^5.28.5" ,
34
34
"cypress" : " ^13.6.6" ,
35
35
"npm-run-all" : " ^4.1.5" ,
36
36
"semver" : " ^7.6.0" ,
37
- "typescript" : " ^5.3.3 "
37
+ "typescript" : " ^5.4.2 "
38
38
}
39
39
}
Original file line number Diff line number Diff line change 72
72
"devDependencies" : {
73
73
"@size-limit/preset-small-lib" : " ^11.0.2" ,
74
74
"@types/node" : " ^20.11.19" ,
75
- "@types/react" : " ^18.2.55 " ,
76
- "@types/react-dom" : " ^18.2.19 " ,
75
+ "@types/react" : " ^18.2.65 " ,
76
+ "@types/react-dom" : " ^18.2.22 " ,
77
77
"next" : " 14.0.1" ,
78
78
"npm-run-all" : " ^4.1.5" ,
79
79
"react" : " ^18.2.0" ,
80
80
"react-dom" : " ^18.2.0" ,
81
81
"size-limit" : " ^11.0.2" ,
82
82
"tsd" : " ^0.30.7" ,
83
83
"tsup" : " ^8.0.2" ,
84
- "typescript" : " ^5.3.3 " ,
84
+ "typescript" : " ^5.4.2 " ,
85
85
"vitest" : " ^1.3.1"
86
86
},
87
87
"tsd" : {
Original file line number Diff line number Diff line change @@ -4,9 +4,10 @@ import type { ParserBuilder } from './parsers'
4
4
5
5
export type SearchParams = Record < string , string | string [ ] | undefined >
6
6
7
- type ExtractParserType < Parser > = Parser extends ParserBuilder < any >
8
- ? ReturnType < Parser [ 'parseServerSide' ] >
9
- : never
7
+ type ExtractParserType < Parser > =
8
+ Parser extends ParserBuilder < any >
9
+ ? ReturnType < Parser [ 'parseServerSide' ] >
10
+ : never
10
11
11
12
export function createSearchParamsCache <
12
13
Parsers extends Record < string , ParserBuilder < any > >
@@ -39,7 +40,7 @@ export function createSearchParamsCache<
39
40
}
40
41
return c as Readonly < ParsedSearchParams >
41
42
}
42
- function get < Key extends keyof Parsers > ( key : Key ) : ParsedSearchParams [ Key ] {
43
+ function get < Key extends Keys > ( key : Key ) : ParsedSearchParams [ Key ] {
43
44
const c = getCache ( )
44
45
const entry = c [ key ]
45
46
if ( typeof entry === 'undefined' ) {
@@ -49,6 +50,7 @@ export function createSearchParamsCache<
49
50
in get(${ String ( key ) } )`
50
51
)
51
52
}
53
+ // @ts -ignore
52
54
return entry
53
55
}
54
56
return { parse, get, all }
Original file line number Diff line number Diff line change 12
12
"devDependencies" : {
13
13
"@types/minimist" : " ^1.2.5" ,
14
14
"@types/node" : " ^20.11.19" ,
15
- "typescript" : " ^5.3.3 "
15
+ "typescript" : " ^5.4.2 "
16
16
}
17
17
}
You can’t perform that action at this time.
0 commit comments