From: Eduardo San Martin Morote Date: Mon, 23 Nov 2020 08:46:21 +0000 (+0100) Subject: feat(types): expose `LocationQueryValueRaw` as internal X-Git-Tag: v4.0.0-rc.6~13 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=dc028500c3e931ed5fd6beedf58b5425f5115b52;p=thirdparty%2Fvuejs%2Frouter.git feat(types): expose `LocationQueryValueRaw` as internal --- diff --git a/src/index.ts b/src/index.ts index bd3036a3..bad3d9bd 100644 --- a/src/index.ts +++ b/src/index.ts @@ -9,6 +9,7 @@ export { stringifyQuery, LocationQueryRaw, LocationQueryValue, + LocationQueryValueRaw, } from './query' export { RouterHistory } from './history/common' diff --git a/src/query.ts b/src/query.ts index 7d62be27..f13c1704 100644 --- a/src/query.ts +++ b/src/query.ts @@ -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} *