]> git.ipfire.org Git - thirdparty/vuejs/core.git/commitdiff
chore(types): mark more internal component instance properties
authorEvan You <yyx990803@gmail.com>
Thu, 10 Nov 2022 06:11:55 +0000 (14:11 +0800)
committerEvan You <yyx990803@gmail.com>
Thu, 10 Nov 2022 06:11:55 +0000 (14:11 +0800)
packages/runtime-core/src/component.ts

index 68f10a669b3d0c64def4bffd6131336e3654970b..939d84e3705aa7de9fc177817fd593a51df04914 100644 (file)
@@ -303,10 +303,12 @@ export interface ComponentInternalInstance {
   inheritAttrs?: boolean
   /**
    * is custom element?
+   * @internal
    */
   isCE?: boolean
   /**
    * custom element specific HMR method
+   * @internal
    */
   ceReload?: (newStyles?: string[]) => void
 
@@ -448,10 +450,12 @@ export interface ComponentInternalInstance {
 
   /**
    * For caching bound $forceUpdate on public proxy access
+   * @internal
    */
   f?: () => void
   /**
    * For caching bound $nextTick on public proxy access
+   * @internal
    */
   n?: () => Promise<void>
 }