File tree 1 file changed +21
-0
lines changed
packages/docs/content/docs
1 file changed +21
-0
lines changed Original file line number Diff line number Diff line change @@ -148,3 +148,24 @@ setCoordinates({
148
148
})
149
149
```
150
150
151
+ As your application grows, you may want to reuse these parsers and urlKeys
152
+ definitions across multiple components or nuqs features
153
+ (like [ loaders] ( ./server-side#loaders ) or a [ serializer] ( ./utilities#serializer-helper ) ).
154
+
155
+ You can use the ` UrlKeys{:ts} ` type helper for this:
156
+
157
+ ``` ts
158
+ // [!code word:UrlKeys]
159
+ import { type UrlKeys } from ' nuqs' // or 'nuqs/server'
160
+
161
+ export const coordinatesParsers = {
162
+ latitude: parseAsFloat .withDefault (45.18 ),
163
+ longitude: parseAsFloat .withDefault (5.72 )
164
+ }
165
+
166
+ export const coordinatesUrlKeys: UrlKeys <typeof coordinatesParsers > = {
167
+ latitude: ' lat' ,
168
+ longitude: ' lng'
169
+ }
170
+ ```
171
+
You can’t perform that action at this time.
0 commit comments