zzz-pc-view 0.0.48 → 0.0.49

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -10,7 +10,7 @@ export declare enum ZNavTypeEnum {
10
10
  /**
11
11
  * 表示导航项是一个目录。
12
12
  */
13
- DIR = 1,
13
+ Folder = 1,
14
14
  /**
15
15
  * 表示导航项是一个菜单。
16
16
  */
@@ -56,11 +56,11 @@ export declare class ZBaseNav extends WithPrototype {
56
56
  */
57
57
  export declare class ZNavDir extends ZBaseNav {
58
58
  /**
59
- * 导航目录的类型,固定为 ZNavTypeEnum.DIR。
59
+ * 导航目录的类型,固定为 ZNavTypeEnum.Folder
60
60
  * @readonly
61
- * @type {ZNavTypeEnum.DIR}
61
+ * @type {ZNavTypeEnum.Folder}
62
62
  */
63
- readonly type: ZNavTypeEnum.DIR;
63
+ readonly type: ZNavTypeEnum.Folder;
64
64
  /**
65
65
  * 导航目录的排序号。
66
66
  * @type {number}