We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 072f83f commit 5c485e7Copy full SHA for 5c485e7
packages/docs/src/app/playground/_demos/repro-907/page.tsx
@@ -6,7 +6,9 @@ import { parseAsString, useQueryStates } from 'nuqs'
6
import { useState } from 'react'
7
8
export default function Home() {
9
- const [nuqsConfig, setNuqsConfig] = useState({
+ const [nuqsConfig, setNuqsConfig] = useState<
10
+ Record<string, typeof parseAsString>
11
+ >({
12
p1: parseAsString,
13
p2: parseAsString
14
})
0 commit comments