@dcloudio/uni-app-x 0.7.26 → 0.7.28
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/app.d.ts +11 -1
- package/types/page.d.ts +11 -185
- package/types/uni/uts-plugin-api/global.d.ts +1 -1
- package/types/uni/uts-plugin-api/index.d.ts +1 -1
- package/types/uni/uts-plugin-api/lib/uni-dialogPage/utssdk/interface.d.ts +0 -1
- package/types/uni/uts-plugin-api/lib/uni-event/utssdk/global.d.ts +0 -2
- package/types/uni/uts-plugin-api/lib/uni-event/utssdk/index.d.ts +0 -1
- package/types/uni/uts-plugin-api/lib/uni-event/utssdk/interface.d.ts +0 -7
- package/types/uni/uts-plugin-api/lib/uni-getSystemInfo/utssdk/global.d.ts +2 -0
- package/types/uni/uts-plugin-api/lib/uni-getSystemInfo/utssdk/index.d.ts +1 -0
- package/types/uni/uts-plugin-api/lib/uni-getSystemInfo/utssdk/interface.d.ts +148 -1
package/package.json
CHANGED
package/types/app.d.ts
CHANGED
|
@@ -720,7 +720,7 @@ type EditorCreateVueAppComponentX<D extends OptionsData = OptionsData, C extends
|
|
|
720
720
|
type AppInstance<T extends EditorCreateVueAppComponentX> = ReturnType<T['create']>['$']
|
|
721
721
|
|
|
722
722
|
declare global {
|
|
723
|
-
export interface AppCreateVueAppComponentDefault {
|
|
723
|
+
export interface AppCreateVueAppComponentDefault {}
|
|
724
724
|
/**
|
|
725
725
|
* `getApp()` 函数用于获取当前应用实例,可通过应用实例调用 App.uvue methods 中定义的方法。
|
|
726
726
|
* @tutorial https://uniapp.dcloud.net.cn/tutorial/page.html#getapp
|
|
@@ -1000,3 +1000,13 @@ declare module '@vue/runtime-core' {
|
|
|
1000
1000
|
}
|
|
1001
1001
|
export function defineApp<D extends OptionsData = OptionsData, C extends ComputedOptions = ComputedOptions, M extends MethodOptions = MethodOptions, I extends ComponentInjectOptions = {}, II extends string = string, G extends GlobalData = GlobalData>(options: DefineAppX<D, C, M, I, II, G>): EditorCreateVueAppComponentX<D, C, M, I, II, G>
|
|
1002
1002
|
}
|
|
1003
|
+
|
|
1004
|
+
export interface UniApp {
|
|
1005
|
+
$vm: EditorCreateVueAppComponentX,
|
|
1006
|
+
vm: EditorCreateVueAppComponentX,
|
|
1007
|
+
globalData: GlobalData,
|
|
1008
|
+
on(eventName: string, callback: Function): void
|
|
1009
|
+
once(eventName: string, callback: Function): void
|
|
1010
|
+
off(eventName: string, callback?: Function | null): void
|
|
1011
|
+
emit(eventName: string, args: any | null): void
|
|
1012
|
+
}
|
package/types/page.d.ts
CHANGED
|
@@ -1604,193 +1604,19 @@ interface Page {
|
|
|
1604
1604
|
|
|
1605
1605
|
type PageOrigin = Page
|
|
1606
1606
|
|
|
1607
|
-
interface UniDialogPage {
|
|
1608
|
-
|
|
1609
|
-
|
|
1610
|
-
|
|
1611
|
-
* "app": {
|
|
1612
|
-
* "android": {
|
|
1613
|
-
* "osVer": "5.0",
|
|
1614
|
-
* "uniVer": "x",
|
|
1615
|
-
* "unixVer": "4.27"
|
|
1616
|
-
* },
|
|
1617
|
-
* "ios": {
|
|
1618
|
-
* "osVer": "12.0",
|
|
1619
|
-
* "uniVer": "x",
|
|
1620
|
-
* "unixVer": "4.27"
|
|
1621
|
-
* }
|
|
1622
|
-
* },
|
|
1623
|
-
* "web": {
|
|
1624
|
-
* "uniVer": "x",
|
|
1625
|
-
* "unixVer": "4.27"
|
|
1626
|
-
* }
|
|
1627
|
-
* }
|
|
1628
|
-
*/
|
|
1607
|
+
export interface UniDialogPage {
|
|
1608
|
+
$component: any | null
|
|
1609
|
+
$disableEscBack: boolean
|
|
1610
|
+
$vm: ComponentPublicInstance | null
|
|
1629
1611
|
route: string
|
|
1630
|
-
|
|
1631
|
-
|
|
1632
|
-
|
|
1633
|
-
|
|
1634
|
-
|
|
1635
|
-
|
|
1636
|
-
|
|
1637
|
-
* "uniVer": "x",
|
|
1638
|
-
* "unixVer": "4.27"
|
|
1639
|
-
* },
|
|
1640
|
-
* "ios": {
|
|
1641
|
-
* "osVer": "12.0",
|
|
1642
|
-
* "uniVer": "x",
|
|
1643
|
-
* "unixVer": "4.27"
|
|
1644
|
-
* }
|
|
1645
|
-
* },
|
|
1646
|
-
* "web": {
|
|
1647
|
-
* "uniVer": "x",
|
|
1648
|
-
* "unixVer": "4.27"
|
|
1649
|
-
* }
|
|
1650
|
-
* }
|
|
1651
|
-
*/
|
|
1652
|
-
$getParentPage(): IPage | null;
|
|
1653
|
-
/**
|
|
1654
|
-
* 按键盘 esc 时是否关闭
|
|
1655
|
-
* @tutorial https://doc.dcloud.net.cn/uni-app-x/api/get-current-pages.html#getPageStyle
|
|
1656
|
-
* @uniPlatform {
|
|
1657
|
-
* "app": {
|
|
1658
|
-
* "android": {
|
|
1659
|
-
* "osVer": "5.0",
|
|
1660
|
-
* "uniVer": "x",
|
|
1661
|
-
* "unixVer": "4.27"
|
|
1662
|
-
* },
|
|
1663
|
-
* "ios": {
|
|
1664
|
-
* "osVer": "12.0",
|
|
1665
|
-
* "uniVer": "x",
|
|
1666
|
-
* "unixVer": "4.27"
|
|
1667
|
-
* }
|
|
1668
|
-
* },
|
|
1669
|
-
* "web": {
|
|
1670
|
-
* "uniVer": "x",
|
|
1671
|
-
* "unixVer": "4.27"
|
|
1672
|
-
* }
|
|
1673
|
-
* }
|
|
1674
|
-
*/
|
|
1675
|
-
$disableEscBack(): boolean;
|
|
1676
|
-
/**
|
|
1677
|
-
* DialogPage 对应的 Page 实例
|
|
1678
|
-
* @tutorial https://doc.dcloud.net.cn/uni-app-x/api/get-current-pages.html#getPageStyle
|
|
1679
|
-
* @uniPlatform {
|
|
1680
|
-
* "app": {
|
|
1681
|
-
* "android": {
|
|
1682
|
-
* "osVer": "5.0",
|
|
1683
|
-
* "uniVer": "x",
|
|
1684
|
-
* "unixVer": "4.27"
|
|
1685
|
-
* },
|
|
1686
|
-
* "ios": {
|
|
1687
|
-
* "osVer": "12.0",
|
|
1688
|
-
* "uniVer": "x",
|
|
1689
|
-
* "unixVer": "4.27"
|
|
1690
|
-
* }
|
|
1691
|
-
* },
|
|
1692
|
-
* "web": {
|
|
1693
|
-
* "uniVer": "x",
|
|
1694
|
-
* "unixVer": "4.27"
|
|
1695
|
-
* }
|
|
1696
|
-
* }
|
|
1697
|
-
*/
|
|
1698
|
-
$vm: Page;
|
|
1699
|
-
/**
|
|
1700
|
-
* 监听自定义事件。事件可以由 uni.$emit 触发。回调函数会接收 uni.$emit 传递的参数。
|
|
1701
|
-
* @tutorial https://doc.dcloud.net.cn/uni-app-x/api/get-current-pages.html#getPageStyle
|
|
1702
|
-
* @uniPlatform {
|
|
1703
|
-
* "app": {
|
|
1704
|
-
* "android": {
|
|
1705
|
-
* "osVer": "5.0",
|
|
1706
|
-
* "uniVer": "x",
|
|
1707
|
-
* "unixVer": "4.27"
|
|
1708
|
-
* },
|
|
1709
|
-
* "ios": {
|
|
1710
|
-
* "osVer": "12.0",
|
|
1711
|
-
* "uniVer": "x",
|
|
1712
|
-
* "unixVer": "4.27"
|
|
1713
|
-
* }
|
|
1714
|
-
* },
|
|
1715
|
-
* "web": {
|
|
1716
|
-
* "uniVer": "x",
|
|
1717
|
-
* "unixVer": "4.27"
|
|
1718
|
-
* }
|
|
1719
|
-
* }
|
|
1720
|
-
*/
|
|
1721
|
-
$on(eventName: string, callback: Function): void
|
|
1722
|
-
/**
|
|
1723
|
-
* 移除自定义事件监听器。如果提供了事件名和回调,则只移除这个回调的监听器。
|
|
1724
|
-
* @tutorial https://doc.dcloud.net.cn/uni-app-x/api/get-current-pages.html#getPageStyle
|
|
1725
|
-
* @uniPlatform {
|
|
1726
|
-
* "app": {
|
|
1727
|
-
* "android": {
|
|
1728
|
-
* "osVer": "5.0",
|
|
1729
|
-
* "uniVer": "x",
|
|
1730
|
-
* "unixVer": "4.27"
|
|
1731
|
-
* },
|
|
1732
|
-
* "ios": {
|
|
1733
|
-
* "osVer": "12.0",
|
|
1734
|
-
* "uniVer": "x",
|
|
1735
|
-
* "unixVer": "4.27"
|
|
1736
|
-
* }
|
|
1737
|
-
* },
|
|
1738
|
-
* "web": {
|
|
1739
|
-
* "uniVer": "x",
|
|
1740
|
-
* "unixVer": "4.27"
|
|
1741
|
-
* }
|
|
1742
|
-
* }
|
|
1743
|
-
*/
|
|
1744
|
-
$off(eventName: string, callback?: Function | null): void
|
|
1745
|
-
/**
|
|
1746
|
-
* 监听一个自定义事件。事件只触发一次,在第一次触发之后移除事件监听器。
|
|
1747
|
-
* @tutorial https://doc.dcloud.net.cn/uni-app-x/api/get-current-pages.html#getPageStyle
|
|
1748
|
-
* @uniPlatform {
|
|
1749
|
-
* "app": {
|
|
1750
|
-
* "android": {
|
|
1751
|
-
* "osVer": "5.0",
|
|
1752
|
-
* "uniVer": "x",
|
|
1753
|
-
* "unixVer": "4.27"
|
|
1754
|
-
* },
|
|
1755
|
-
* "ios": {
|
|
1756
|
-
* "osVer": "12.0",
|
|
1757
|
-
* "uniVer": "x",
|
|
1758
|
-
* "unixVer": "4.27"
|
|
1759
|
-
* }
|
|
1760
|
-
* },
|
|
1761
|
-
* "web": {
|
|
1762
|
-
* "uniVer": "x",
|
|
1763
|
-
* "unixVer": "4.27"
|
|
1764
|
-
* }
|
|
1765
|
-
* }
|
|
1766
|
-
*/
|
|
1767
|
-
$once(eventName: string, callback: Function): void
|
|
1768
|
-
/**
|
|
1769
|
-
* 触发自定义事件,附加的参数会传递给事件监听器。
|
|
1770
|
-
* @tutorial https://doc.dcloud.net.cn/uni-app-x/api/get-current-pages.html#getPageStyle
|
|
1771
|
-
* @uniPlatform {
|
|
1772
|
-
* "app": {
|
|
1773
|
-
* "android": {
|
|
1774
|
-
* "osVer": "5.0",
|
|
1775
|
-
* "uniVer": "x",
|
|
1776
|
-
* "unixVer": "4.27"
|
|
1777
|
-
* },
|
|
1778
|
-
* "ios": {
|
|
1779
|
-
* "osVer": "12.0",
|
|
1780
|
-
* "uniVer": "x",
|
|
1781
|
-
* "unixVer": "4.27"
|
|
1782
|
-
* }
|
|
1783
|
-
* },
|
|
1784
|
-
* "web": {
|
|
1785
|
-
* "uniVer": "x",
|
|
1786
|
-
* "unixVer": "4.27"
|
|
1787
|
-
* }
|
|
1788
|
-
* }
|
|
1789
|
-
*/
|
|
1790
|
-
|
|
1791
|
-
$emit(eventName: string, args: any | null): void
|
|
1612
|
+
options: Map<string, string | null>
|
|
1613
|
+
getParentPage: () => ComponentPublicInstance | null
|
|
1614
|
+
vm: ComponentPublicInstance | null
|
|
1615
|
+
on(eventName: string, callback: Function): void
|
|
1616
|
+
once(eventName: string, callback: Function): void
|
|
1617
|
+
off(eventName: string, callback?: Function | null): void
|
|
1618
|
+
emit(eventName: string, args: any | null): void
|
|
1792
1619
|
}
|
|
1793
|
-
|
|
1794
1620
|
type UniDialogPageOrigin = UniDialogPage
|
|
1795
1621
|
|
|
1796
1622
|
declare global {
|
|
@@ -11,9 +11,9 @@
|
|
|
11
11
|
/// <reference path='./lib/uni-prompt/utssdk/global.d.ts' />
|
|
12
12
|
/// <reference path='./lib/uni-payment-wxpay/utssdk/global.d.ts' />
|
|
13
13
|
/// <reference path='./lib/uni-payment-alipay/utssdk/global.d.ts' />
|
|
14
|
+
/// <reference path='./lib/uni-payment/utssdk/global.d.ts' />
|
|
14
15
|
/// <reference path='./lib/uni-pageScrollTo/utssdk/global.d.ts' />
|
|
15
16
|
/// <reference path='./lib/uni-openDocument/utssdk/global.d.ts' />
|
|
16
|
-
/// <reference path='./lib/uni-payment/utssdk/global.d.ts' />
|
|
17
17
|
/// <reference path='./lib/uni-openAppAuthorizeSetting/utssdk/global.d.ts' />
|
|
18
18
|
/// <reference path='./lib/uni-oauth-huawei/utssdk/global.d.ts' />
|
|
19
19
|
/// <reference path='./lib/uni-oauth/utssdk/global.d.ts' />
|
|
@@ -11,9 +11,9 @@ export * from './lib/uni-pullDownRefresh/utssdk'
|
|
|
11
11
|
export * from './lib/uni-prompt/utssdk'
|
|
12
12
|
export * from './lib/uni-payment-wxpay/utssdk'
|
|
13
13
|
export * from './lib/uni-payment-alipay/utssdk'
|
|
14
|
+
export * from './lib/uni-payment/utssdk'
|
|
14
15
|
export * from './lib/uni-pageScrollTo/utssdk'
|
|
15
16
|
export * from './lib/uni-openDocument/utssdk'
|
|
16
|
-
export * from './lib/uni-payment/utssdk'
|
|
17
17
|
export * from './lib/uni-openAppAuthorizeSetting/utssdk'
|
|
18
18
|
export * from './lib/uni-oauth-huawei/utssdk'
|
|
19
19
|
export * from './lib/uni-oauth/utssdk'
|
|
@@ -4,7 +4,6 @@ import {
|
|
|
4
4
|
$Once as $OnceOrigin,
|
|
5
5
|
$Off as $OffOrigin,
|
|
6
6
|
$Emit as $EmitOrigin,
|
|
7
|
-
IEventBus as IEventBusOrigin,
|
|
8
7
|
Uni as UniOrigin
|
|
9
8
|
} from './interface'
|
|
10
9
|
|
|
@@ -13,6 +12,5 @@ declare global {
|
|
|
13
12
|
type $Once = $OnceOrigin
|
|
14
13
|
type $Off = $OffOrigin
|
|
15
14
|
type $Emit = $EmitOrigin
|
|
16
|
-
type IEventBus = IEventBusOrigin
|
|
17
15
|
interface Uni extends UniOrigin { }
|
|
18
16
|
}
|
|
@@ -9,13 +9,6 @@ export type $Off = (eventName: string, callback?: $OffCallback | null) => void
|
|
|
9
9
|
|
|
10
10
|
export type $Emit = (eventName: string, args: any | null) => void
|
|
11
11
|
|
|
12
|
-
export interface IEventBus {
|
|
13
|
-
on: $On
|
|
14
|
-
once: $Once
|
|
15
|
-
off: $Off
|
|
16
|
-
emit: $Emit
|
|
17
|
-
}
|
|
18
|
-
|
|
19
12
|
export interface Uni {
|
|
20
13
|
/**
|
|
21
14
|
* 监听自定义事件。事件可以由 uni.$emit 触发。回调函数会接收 uni.$emit 传递的参数。
|
|
@@ -5,6 +5,7 @@ import {
|
|
|
5
5
|
GetWindowInfo as GetWindowInfoOrigin,
|
|
6
6
|
SafeArea as SafeAreaOrigin,
|
|
7
7
|
SafeAreaInsets as SafeAreaInsetsOrigin,
|
|
8
|
+
CutoutRect as CutoutRectOrigin,
|
|
8
9
|
GetSystemInfoResult as GetSystemInfoResultOrigin,
|
|
9
10
|
GetSystemInfoSuccessCallback as GetSystemInfoSuccessCallbackOrigin,
|
|
10
11
|
GetSystemInfoComplete as GetSystemInfoCompleteOrigin,
|
|
@@ -20,6 +21,7 @@ declare global {
|
|
|
20
21
|
type GetWindowInfo = GetWindowInfoOrigin
|
|
21
22
|
type SafeArea = SafeAreaOrigin
|
|
22
23
|
type SafeAreaInsets = SafeAreaInsetsOrigin
|
|
24
|
+
type CutoutRect = CutoutRectOrigin
|
|
23
25
|
type GetSystemInfoResult = GetSystemInfoResultOrigin
|
|
24
26
|
type GetSystemInfoSuccessCallback = GetSystemInfoSuccessCallbackOrigin
|
|
25
27
|
type GetSystemInfoComplete = GetSystemInfoCompleteOrigin
|
|
@@ -414,6 +414,124 @@ export type SafeAreaInsets = {
|
|
|
414
414
|
*/
|
|
415
415
|
bottom: number
|
|
416
416
|
};
|
|
417
|
+
export type CutoutRect = {
|
|
418
|
+
/**
|
|
419
|
+
* 挖孔、刘海区域左上角横坐标,单位为px
|
|
420
|
+
*
|
|
421
|
+
* @uniPlatform
|
|
422
|
+
* {
|
|
423
|
+
* "app": {
|
|
424
|
+
* "android": {
|
|
425
|
+
* "osVer": "9.0",
|
|
426
|
+
* "uniVer": "x",
|
|
427
|
+
* "unixVer": "4.28"
|
|
428
|
+
* },
|
|
429
|
+
* "ios": {
|
|
430
|
+
* "osVer": "12.0",
|
|
431
|
+
* "uniVer": "x",
|
|
432
|
+
* "unixVer": "x"
|
|
433
|
+
* },
|
|
434
|
+
* "harmony": {
|
|
435
|
+
* "osVer": "3.0",
|
|
436
|
+
* "uniVer": "x",
|
|
437
|
+
* "unixVer": "x"
|
|
438
|
+
* }
|
|
439
|
+
* },
|
|
440
|
+
* "web": {
|
|
441
|
+
* "uniVer": "x",
|
|
442
|
+
* "unixVer": "x"
|
|
443
|
+
* }
|
|
444
|
+
* }
|
|
445
|
+
*/
|
|
446
|
+
left: number,
|
|
447
|
+
/**
|
|
448
|
+
* 挖孔、刘海区域右下角横坐标,单位为px
|
|
449
|
+
*
|
|
450
|
+
* @uniPlatform
|
|
451
|
+
* {
|
|
452
|
+
* "app": {
|
|
453
|
+
* "android": {
|
|
454
|
+
* "osVer": "9.0",
|
|
455
|
+
* "uniVer": "x",
|
|
456
|
+
* "unixVer": "4.28"
|
|
457
|
+
* },
|
|
458
|
+
* "ios": {
|
|
459
|
+
* "osVer": "12.0",
|
|
460
|
+
* "uniVer": "x",
|
|
461
|
+
* "unixVer": "x"
|
|
462
|
+
* },
|
|
463
|
+
* "harmony": {
|
|
464
|
+
* "osVer": "3.0",
|
|
465
|
+
* "uniVer": "x",
|
|
466
|
+
* "unixVer": "x"
|
|
467
|
+
* }
|
|
468
|
+
* },
|
|
469
|
+
* "web": {
|
|
470
|
+
* "uniVer": "x",
|
|
471
|
+
* "unixVer": "x"
|
|
472
|
+
* }
|
|
473
|
+
* }
|
|
474
|
+
*/
|
|
475
|
+
right: number,
|
|
476
|
+
/**
|
|
477
|
+
* 挖孔、刘海区域左上角纵坐标,单位为px
|
|
478
|
+
*
|
|
479
|
+
* @uniPlatform
|
|
480
|
+
* {
|
|
481
|
+
* "app": {
|
|
482
|
+
* "android": {
|
|
483
|
+
* "osVer": "9.0",
|
|
484
|
+
* "uniVer": "x",
|
|
485
|
+
* "unixVer": "4.28"
|
|
486
|
+
* },
|
|
487
|
+
* "ios": {
|
|
488
|
+
* "osVer": "12.0",
|
|
489
|
+
* "uniVer": "x",
|
|
490
|
+
* "unixVer": "x"
|
|
491
|
+
* },
|
|
492
|
+
* "harmony": {
|
|
493
|
+
* "osVer": "3.0",
|
|
494
|
+
* "uniVer": "x",
|
|
495
|
+
* "unixVer": "x"
|
|
496
|
+
* }
|
|
497
|
+
* },
|
|
498
|
+
* "web": {
|
|
499
|
+
* "uniVer": "x",
|
|
500
|
+
* "unixVer": "x"
|
|
501
|
+
* }
|
|
502
|
+
* }
|
|
503
|
+
*/
|
|
504
|
+
top: number,
|
|
505
|
+
/**
|
|
506
|
+
* 挖孔、刘海区域右下角纵坐标,单位为px
|
|
507
|
+
*
|
|
508
|
+
* @uniPlatform
|
|
509
|
+
* {
|
|
510
|
+
* "app": {
|
|
511
|
+
* "android": {
|
|
512
|
+
* "osVer": "9.0",
|
|
513
|
+
* "uniVer": "x",
|
|
514
|
+
* "unixVer": "4.28"
|
|
515
|
+
* },
|
|
516
|
+
* "ios": {
|
|
517
|
+
* "osVer": "12.0",
|
|
518
|
+
* "uniVer": "x",
|
|
519
|
+
* "unixVer": "x"
|
|
520
|
+
* },
|
|
521
|
+
* "harmony": {
|
|
522
|
+
* "osVer": "3.0",
|
|
523
|
+
* "uniVer": "x",
|
|
524
|
+
* "unixVer": "x"
|
|
525
|
+
* }
|
|
526
|
+
* },
|
|
527
|
+
* "web": {
|
|
528
|
+
* "uniVer": "x",
|
|
529
|
+
* "unixVer": "x"
|
|
530
|
+
* }
|
|
531
|
+
* }
|
|
532
|
+
*/
|
|
533
|
+
bottom: number
|
|
534
|
+
};
|
|
417
535
|
export type GetSystemInfoResult = {
|
|
418
536
|
/**
|
|
419
537
|
* 客户端基础库版本
|
|
@@ -2135,5 +2253,34 @@ export type GetWindowInfoResult = {
|
|
|
2135
2253
|
* }
|
|
2136
2254
|
* }
|
|
2137
2255
|
*/
|
|
2138
|
-
screenTop: number
|
|
2256
|
+
screenTop: number,
|
|
2257
|
+
/**
|
|
2258
|
+
* 挖孔、刘海区域在屏幕中的位置信息
|
|
2259
|
+
*
|
|
2260
|
+
* @uniPlatform
|
|
2261
|
+
* {
|
|
2262
|
+
* "app": {
|
|
2263
|
+
* "android": {
|
|
2264
|
+
* "osVer": "9.0",
|
|
2265
|
+
* "uniVer": "x",
|
|
2266
|
+
* "unixVer": "4.28"
|
|
2267
|
+
* },
|
|
2268
|
+
* "ios": {
|
|
2269
|
+
* "osVer": "12.0",
|
|
2270
|
+
* "uniVer": "x",
|
|
2271
|
+
* "unixVer": "x"
|
|
2272
|
+
* },
|
|
2273
|
+
* "harmony": {
|
|
2274
|
+
* "osVer": "3.0",
|
|
2275
|
+
* "uniVer": "x",
|
|
2276
|
+
* "unixVer": "x"
|
|
2277
|
+
* }
|
|
2278
|
+
* },
|
|
2279
|
+
* "web": {
|
|
2280
|
+
* "uniVer": "x",
|
|
2281
|
+
* "unixVer": "x"
|
|
2282
|
+
* }
|
|
2283
|
+
* }
|
|
2284
|
+
*/
|
|
2285
|
+
cutoutArea: Array<CutoutRect>
|
|
2139
2286
|
};
|