From dc028500c3e931ed5fd6beedf58b5425f5115b52 Mon Sep 17 00:00:00 2001 From: Eduardo San Martin Morote Date: Mon, 23 Nov 2020 09:46:21 +0100 Subject: [PATCH] feat(types): expose `LocationQueryValueRaw` as internal --- src/index.ts | 1 + src/query.ts | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) 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} * -- 2.47.3