]> git.ipfire.org Git - thirdparty/vuejs/router.git/commitdiff
refactor: internal types
authorEduardo San Martin Morote <posva13@gmail.com>
Wed, 22 Feb 2023 10:31:23 +0000 (11:31 +0100)
committerEduardo San Martin Morote <posva13@gmail.com>
Wed, 22 Feb 2023 10:31:23 +0000 (11:31 +0100)
packages/router/src/types/utils.ts

index 95ba7d0a4e08b63bbe520fcbee7b56cc264d92ee..843808c7243acfe2cc495f1a972bb9d979bd71ce 100644 (file)
@@ -1,8 +1,14 @@
-export type LiteralUnion<LiteralType, BaseType extends string = string> =
+/**
+ * @internal
+ */
+export type _LiteralUnion<LiteralType, BaseType extends string = string> =
   | LiteralType
   | (BaseType & Record<never, never>)
 
-export type Simplify<T> = { [K in keyof T]: T[K] }
+/**
+ * @internal
+ */
+export type _Simplify<T> = { [K in keyof T]: T[K] }
 
 /**
  * @internal