Browse Source

chore: fix dts test

Evan You 1 year ago
parent
commit
3d98183e1c
1 changed files with 2 additions and 9 deletions
  1. 2 9
      packages/runtime-dom/src/directives/vShow.ts

+ 2 - 9
packages/runtime-dom/src/directives/vShow.ts

@@ -1,16 +1,9 @@
 import type { ObjectDirective } from '@vue/runtime-core'
 import type { ObjectDirective } from '@vue/runtime-core'
 
 
-/**
- * @internal
- */
 export const vShowOriginalDisplay: unique symbol = Symbol('_vod')
 export const vShowOriginalDisplay: unique symbol = Symbol('_vod')
-/**
- * @internal
- */
+
 export const vShowHidden: unique symbol = Symbol('_vsh')
 export const vShowHidden: unique symbol = Symbol('_vsh')
-/**
- * @internal
- */
+
 export interface VShowElement extends HTMLElement {
 export interface VShowElement extends HTMLElement {
   // _vod = vue original display
   // _vod = vue original display
   [vShowOriginalDisplay]?: string
   [vShowOriginalDisplay]?: string