]> git.ipfire.org Git - thirdparty/vuejs/core.git/commitdiff
chore: fix dts
authorEvan You <yyx990803@gmail.com>
Thu, 8 Apr 2021 21:15:02 +0000 (17:15 -0400)
committerEvan You <yyx990803@gmail.com>
Thu, 8 Apr 2021 21:15:02 +0000 (17:15 -0400)
packages/runtime-core/src/compat/deprecations.ts
packages/runtime-core/src/index.ts

index 4783b390b8983ad71aeaf4146ecc29e48e78a277..c2407af59f680dfc4183631f508b9a722dacace2 100644 (file)
@@ -343,9 +343,6 @@ const deprecationData: Record<DeprecationTypes, DeprecationData> = {
 const instanceWarned: Record<string, true> = Object.create(null)
 const warnCount: Record<string, number> = Object.create(null)
 
-/**
- * @internal
- */
 export function warnDeprecation(key: DeprecationTypes, ...args: any[]) {
   if (!__DEV__) {
     return
index 5131a7ae14b7c40d36b077fe908010346f765ce5..6d393ec380d6ac9fee609e6c64fb9e4f22c31fe3 100644 (file)
@@ -297,6 +297,9 @@ const _compatUtils = {
   softAssertCompatEnabled
 }
 
+/**
+ * @internal only exposed in compat builds.
+ */
 export const compatUtils = (__COMPAT__
   ? _compatUtils
   : null) as typeof _compatUtils