Skip to content

Commit dc02850

Browse files
committed
feat(types): expose LocationQueryValueRaw as internal
1 parent 9fd7c9c commit dc02850

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

src/index.ts

+1
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ export {
99
stringifyQuery,
1010
LocationQueryRaw,
1111
LocationQueryValue,
12+
LocationQueryValueRaw,
1213
} from './query'
1314

1415
export { RouterHistory } from './history/common'

src/query.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ export type LocationQueryValue = string | null
1111
*
1212
* @internal
1313
*/
14-
type LocationQueryValueRaw = LocationQueryValue | number | undefined
14+
export type LocationQueryValueRaw = LocationQueryValue | number | undefined
1515
/**
1616
* Normalized query object that appears in {@link RouteLocationNormalized}
1717
*

0 commit comments

Comments
 (0)