From: Eduardo San Martin Morote Date: Wed, 22 Feb 2023 10:31:23 +0000 (+0100) Subject: refactor: internal types X-Git-Tag: v4.2.0~45 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6267964383465d37368e0825fae3d9ca06c90a43;p=thirdparty%2Fvuejs%2Frouter.git refactor: internal types --- diff --git a/packages/router/src/types/utils.ts b/packages/router/src/types/utils.ts index 95ba7d0a..843808c7 100644 --- a/packages/router/src/types/utils.ts +++ b/packages/router/src/types/utils.ts @@ -1,8 +1,14 @@ -export type LiteralUnion = +/** + * @internal + */ +export type _LiteralUnion = | LiteralType | (BaseType & Record) -export type Simplify = { [K in keyof T]: T[K] } +/** + * @internal + */ +export type _Simplify = { [K in keyof T]: T[K] } /** * @internal