@dcloudio/uni-app-x 0.7.63 → 0.7.64

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dcloudio/uni-app-x",
3
- "version": "0.7.63",
3
+ "version": "0.7.64",
4
4
  "description": "uni-app x types",
5
5
  "typings": "index.d.ts",
6
6
  "main": "index.d.ts",
@@ -1028,7 +1028,7 @@ declare global {
1028
1028
  * }
1029
1029
  * }
1030
1030
  */
1031
- getNodeId(): string
1031
+ getNodeId(): number
1032
1032
 
1033
1033
  /**
1034
1034
  * 对当前组件进行截图,调用此方法会将当前组件(包含子节点)渲染结果导出成图片。
@@ -39,7 +39,7 @@ export class UniElementImpl implements UniElement {
39
39
  offsetWidth: number;
40
40
  offsetHeight: number;
41
41
  ext: Map<string, any>;
42
- getNodeId(): string;
42
+ getNodeId(): number;
43
43
  takeSnapshot(options: TakeSnapshotOptions): void;
44
44
  appendChild(aChild: UniElement): void;
45
45
  insertBefore(newChild: UniElement, refChild?: UniElement | null): UniElement | null;