]> git.ipfire.org Git - thirdparty/vuejs/router.git/commitdiff
feat(types): expose `LocationQueryValueRaw` as internal
authorEduardo San Martin Morote <posva13@gmail.com>
Mon, 23 Nov 2020 08:46:21 +0000 (09:46 +0100)
committerEduardo San Martin Morote <posva13@gmail.com>
Mon, 23 Nov 2020 10:29:52 +0000 (11:29 +0100)
src/index.ts
src/query.ts

index bd3036a345d5f8f85c2b4f4ef7698fc5b26935d7..bad3d9bd8a1c1f4de780bec357f7e7f69e79ef1c 100644 (file)
@@ -9,6 +9,7 @@ export {
   stringifyQuery,
   LocationQueryRaw,
   LocationQueryValue,
+  LocationQueryValueRaw,
 } from './query'
 
 export { RouterHistory } from './history/common'
index 7d62be276f2c93aa56625808f1970b6680a27493..f13c170454f81ceca5288f1b91d88e7bdbcda69c 100644 (file)
@@ -11,7 +11,7 @@ export type LocationQueryValue = string | null
  *
  * @internal
  */
-type LocationQueryValueRaw = LocationQueryValue | number | undefined
+export type LocationQueryValueRaw = LocationQueryValue | number | undefined
 /**
  * Normalized query object that appears in {@link RouteLocationNormalized}
  *