@dcloudio/uni-app-x 0.5.12 → 0.5.13
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 +1 -1
- package/types/native/IPage.d.ts +7 -1
package/package.json
CHANGED
package/types/native/IPage.d.ts
CHANGED
|
@@ -27,6 +27,11 @@ declare class ViewToTempFilePathOptions {
|
|
|
27
27
|
|
|
28
28
|
}
|
|
29
29
|
|
|
30
|
+
// TODO
|
|
31
|
+
declare class NavigationBarSearchInputEvent {
|
|
32
|
+
|
|
33
|
+
}
|
|
34
|
+
|
|
30
35
|
/**
|
|
31
36
|
* @package io.dcloud.uniapp.runtime
|
|
32
37
|
* @autodoc false
|
|
@@ -105,7 +110,8 @@ declare interface IPage {
|
|
|
105
110
|
dispatchPageEvent(event: string, data: PageEvent): void
|
|
106
111
|
viewToTempFilePath(options: ViewToTempFilePathOptions): void
|
|
107
112
|
dispatchActivityState(key: number, ...params: any[]): void
|
|
108
|
-
|
|
113
|
+
// LoadFontFaceOptions 类型全局命名冲突
|
|
114
|
+
// loadFontFace(options: LoadFontFaceOptions): void
|
|
109
115
|
/**
|
|
110
116
|
* 停止排版渲染
|
|
111
117
|
*/
|