@dcloudio/uni-app-x 0.6.3 → 0.6.4
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 +2 -2
package/package.json
CHANGED
package/types/native/IPage.d.ts
CHANGED
|
@@ -6,6 +6,7 @@ import { PageEvent } from "./PageEvent";
|
|
|
6
6
|
import { PageScrollEvent } from "./PageScrollEvent";
|
|
7
7
|
import { ResizeEvent } from "./ResizeEvent";
|
|
8
8
|
import { ITabsNode } from "./UniTabsElement";
|
|
9
|
+
import { NativeLoadFontFaceOptions } from './NativeLoadFontFaceOptions'
|
|
9
10
|
|
|
10
11
|
export enum Type {
|
|
11
12
|
DEFAULT,
|
|
@@ -115,8 +116,7 @@ export interface IPage {
|
|
|
115
116
|
dispatchPageEvent(event: string, data: PageEvent): void
|
|
116
117
|
viewToTempFilePath(options: ViewToTempFilePathOptions): void
|
|
117
118
|
dispatchActivityState(key: number, ...params: any[]): void
|
|
118
|
-
|
|
119
|
-
// loadFontFace(options: LoadFontFaceOptions): void
|
|
119
|
+
loadFontFace(options: NativeLoadFontFaceOptions): void
|
|
120
120
|
/**
|
|
121
121
|
* 停止排版渲染
|
|
122
122
|
*/
|