@dcloudio/uni-app-x 0.6.5 → 0.6.7
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
|
@@ -34,4 +34,9 @@ export interface IDocument extends Element {
|
|
|
34
34
|
* @param {string.cssSelectorString}selector CSS 选择器字符串
|
|
35
35
|
*/
|
|
36
36
|
querySelectorAll(selector: string.cssSelectorString): Element[] | null
|
|
37
|
+
|
|
38
|
+
/**
|
|
39
|
+
* 页面排版完毕回调callback
|
|
40
|
+
*/
|
|
41
|
+
waitNativeRender(callback: () => void): void
|
|
37
42
|
}
|