@dcloudio/uni-app-x 0.5.13 → 0.5.15

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.5.13",
3
+ "version": "0.5.15",
4
4
  "description": "uni-app x types",
5
5
  "typings": "index.d.ts",
6
6
  "author": "DCloud",
@@ -20,5 +20,5 @@ declare interface IDocument extends Element {
20
20
 
21
21
  notifyLayout(): void
22
22
 
23
- runAsyncDomTask(fn: () => any | null, callback: (value: any | null) => void)
23
+ runAsyncDomTask(fn: () => any | null, callback: (value: any | null) => void): void
24
24
  }
@@ -82,7 +82,7 @@ declare interface IPage {
82
82
  destroy(): void;
83
83
  updateStyle(style: Map<string, any>): void
84
84
  createDocument(documentData: INodeData): IDocument
85
- createDocument(tagName: string, data: Map<string, any>): IDocument
85
+ // createDocument(tagName: string, data: Map<string, any>): IDocument
86
86
  addPageEventListener(
87
87
  type:
88
88
  | 'onReady'