-
Notifications
You must be signed in to change notification settings - Fork 3.7k
/
Copy pathshims-uni-app.d.ts
611 lines (583 loc) · 16.3 KB
/
shims-uni-app.d.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
// 临时覆盖 HBuilderX.PageURIString , HBuilderX.ColorString
declare namespace HBuilderX {
type PageURIString = string
type ColorString = string
}
declare namespace string {
type PageURIString = string
type ColorString = string
}
declare namespace Page {
interface PageInstance {
$page: {
id: number
path: string
route: string
fullPath: string
options: Record<string, any>
meta: UniApp.PageRouteMeta
openType: UniApp.OpenType
eventChannel: unknown
statusBarStyle?: 'dark' | 'light'
}
}
}
declare namespace UniNamespace {
type ClassObj = Record<string, boolean>
type StyleObj = Record<string, any>
type PLATFORM = keyof PagesJsonPagePlatformStyle
type ThemeMode = 'light' | 'dark'
type OpenType =
| 'navigateTo'
| 'redirectTo'
| 'reLaunch'
| 'switchTab'
| 'navigateBack'
| 'preloadPage'
| 'launch'
| 'openDialogPage'
| ''
interface LayoutWindowOptions {
matchMedia?: {
minWidth?: number
}
style?: Record<string, any>
component: any
}
interface UniConfig {
conditionUrl?: string
ready?: boolean
getTabBarConfig: () => Record<string, any>
router?: {
strict: boolean
base: string
assets: string
routerBase: string
}
nvue?: {
'flex-direction': 'column' | 'row'
}
uvue?: {
'flex-direction': 'column' | 'row'
}
globalStyle: PagesJsonPageStyle & {
rpxCalcMaxDeviceWidth?: number
rpxCalcBaseDeviceWidth?: number
// rpxCalcIncludeWidth?: number
}
topWindow?: LayoutWindowOptions
leftWindow?: LayoutWindowOptions
rightWindow?: LayoutWindowOptions
networkTimeout: {
connectSocket: number
downloadFile: number
request: number
uploadFile: number
}
tabBar?: TabBarOptions
subPackages?: { root: string }[]
qqMapKey?: string
bMapKey?: string
googleMapKey?: string
aMapKey?: string
aMapServiceHost?: string
aMapSecurityJsCode?: string
// app-plus
referrerInfo?: {
appId: string
extraData: Record<string, any>
}
entryPagePath?: string
entryPageQuery?: string
realEntryPagePath?: string
renderer?: 'auto' | 'native'
splashscreen: {
alwaysShowBeforeRender: boolean
autoclose: boolean
}
onReady: (fn: Function) => void
serviceReady: boolean
locale: string
fallbackLocale: string
locales: Record<string, Record<string, string>>
compilerVersion: string
appId: string
appName: string
appVersion: string
appVersionCode: string
darkmode: Boolean | ThemeMode
themeConfig: ThemeJson
}
interface UniRoute {
path: string
alias?: string
meta: PageRouteMeta
component?: any
loader?: () => Promise<any>
}
type UniRoutes = UniRoute[]
interface PageNavigationBarButton {
type:
| 'none'
| 'forward'
| 'back'
| 'share'
| 'favorite'
| 'home'
| 'menu'
| 'close'
color: string
background?: string
badgeText?: string
colorPressed?: string
float?: 'right' | 'left'
fontWeight?: any
fontSize: string
fontSrc?: string
fontFamily?: string
select?: boolean
text: string
width?: string
redDot?: boolean
}
interface PageNavigationBarSearchInput {
color?: string
autoFocus?: boolean
align?: 'center' | 'left' | 'right'
backgroundColor?: string
borderRadius?: string
placeholder?: string
placeholderColor?: string
disabled?: boolean
}
interface PageNavigationBar {
type?: 'default' | 'transparent' | 'float'
titleSize?: string
titleText?: string
titleImage?: string
titleColor?: '#000000' | '#ffffff'
timingFunc?: string
duration?: string
backgroundColor?: string
titlePenetrate?: 'YES' | 'NO'
shadowColorType?: 'grey' | 'blue' | 'green' | 'orange' | 'red' | 'yellow'
backButton?: Omit<
PageNavigationBarButton,
'type' | 'float' | 'fontSrc' | 'fontFamily' | 'select' | 'text' | 'width'
>
buttons?: PageNavigationBarButton[]
searchInput?: PageNavigationBarSearchInput
style?: 'default' | 'custom'
loading?: boolean
coverage?: string
}
interface PageRefreshOptions {
support?: boolean
color?: string
style?: 'circle' | string
height?: number
range?: number
offset?: number
contentdown?: {
caption?: string
}
contentover?: {
caption?: string
}
contentrefresh?: {
caption?: string
}
}
interface PagesJsonPagePlatformStyle {
h5?: PagesJsonPageStyle
web?: PagesJsonPageStyle
app?: PagesJsonPageStyle
'app-plus'?: PagesJsonPageStyle
'app-harmony'?: PagesJsonPageStyle
'mp-alipay'?: PagesJsonPageStyle
'mp-baidu'?: PagesJsonPageStyle
'mp-harmony'?: PagesJsonPageStyle
'mp-qq'?: PagesJsonPageStyle
'mp-toutiao'?: PagesJsonPageStyle
'mp-weixin'?: PagesJsonPageStyle
'mp-kuaishou'?: PagesJsonPageStyle
'mp-lark'?: PagesJsonPageStyle
'mp-jd'?: PagesJsonPageStyle
'mp-xhs'?: PagesJsonPageStyle
'quickapp-webview'?: PagesJsonPageStyle
'quickapp-webview-huawei'?: PagesJsonPageStyle
'quickapp-webview-union'?: PagesJsonPageStyle
}
interface PagesJsonPageStyleSubNVue {
id?: string
path: string
type: 'popup' | 'navigationBar'
style?: unknown
}
interface PagesJsonPageStyle extends PagesJsonPagePlatformStyle {
isNVue?: boolean
isSubNVue?: boolean
disableScroll?: boolean
enablePullDownRefresh?: boolean
navigationBar: PageNavigationBar
pullToRefresh?: PageRefreshOptions
onReachBottomDistance?: number
pageOrientation?: 'auto' | 'portrait' | 'landscape'
backgroundColor?: string
backgroundColorContent?: string
navigationStyle?: 'default' | 'custom'
maxWidth?: string | number
// app-plus
scrollIndicator?: 'none'
animationType?: string
animationDuration?: number
subNVues?: PagesJsonPageStyleSubNVue[]
disableSwipeBack?: Boolean
popGesture?: 'close' | 'none'
enableUcssReset?: boolean
}
interface PageRouteMeta extends PagesJsonPageStyle {
id?: number
route: string
i18n?: boolean
isQuit?: boolean
isEntry?: boolean
isTabBar?: boolean
tabBarIndex?: number
tabBarText?: string
windowTop?: number
topWindow?: boolean
leftWindow?: boolean
rightWindow?: boolean
eventChannel?: any
// 目前 app-harmony 专用
isNVueStyle?: boolean
}
interface PagesJsonPageOptions {
path: string
style: PagesJsonPageStyle
needLogin?: boolean
}
interface PagesJsonSubpackagesOptions {
root: string
pages: PagesJsonPageOptions[]
}
interface PagesJsonWindowOptions extends PagesJsonPageOptions {
matchMedia: {
minWidth: number
}
}
interface PagesJson {
pages: PagesJsonPageOptions[]
preloadRule?: {
[page: string]: {
network?: 'all' | 'wifi'
packages: string[]
}
}
subpackages?: PagesJsonSubpackagesOptions[]
subPackages?: PagesJsonSubpackagesOptions[]
globalStyle: PagesJsonPageStyle
tabBar?: TabBarOptions
topWindow?: PagesJsonWindowOptions
leftWindow?: PagesJsonWindowOptions
rightWindow?: PagesJsonWindowOptions
easycom?: {
autoscan?: boolean
custom?: {
[name: string]: string
}
}
uni_modules?: {
exports?: boolean
}
condition?: {
current?: number
list?: {
id?: string | number
name?: string
path?: string
pathName?: string
query?: string
}[]
}
uniIdRouter?: {
loginPage: string
needLogin?: string[]
resToLogin?: boolean
}
themeConfig?: Record<string, any>
}
interface ThemeJson {
light?: Record<string, string>
dark?: Record<string, string>
}
interface TabBarItemBaseOptions {
pagePath: string
text: string
iconPath?: string
selectedIconPath?: string
redDot?: boolean
badge?: string
visible?: boolean
iconfont?: TabBarItemIconfontOptions
}
interface TabBarItemIconfontOptions {
text: string
selectedText: string
fontSize?: string
color?: string
selectedColor?: string
}
interface TabBarNormalItemOptions extends TabBarItemBaseOptions {
type: 'normal'
}
interface TabBarMidButtonOptions extends TabBarItemBaseOptions {
type: 'midButton'
width?: string
height?: string
iconWidth?: string
backgroundImage?: string
}
type TabBarItemOptions = TabBarNormalItemOptions | TabBarMidButtonOptions
type StopHandle = () => void
interface TabBarOptions {
position?: 'bottom' | 'top'
color: string
selectedColor: string
backgroundColor: string
borderStyle?: 'black' | 'white'
borderColor?: string
iconfontSrc?: string
list: TabBarItemOptions[]
blurEffect?: 'none' | 'dark' | 'extralight' | 'light'
fontSize?: string
iconWidth?: string
spacing?: string
height?: string
midButton?: TabBarMidButtonOptions
selectedIndex?: number
shown: boolean
}
interface ComponentDescriptor {}
type OnApiLike = (callback: (result: unknown) => void) => void
type CallbackFunction = (...args: any[]) => void
interface UniServiceJSBridge {
/**
* 监听 service 层的自定义事件。事件由 emit 触发,回调函数会接收所有传入事件触发函数的额外参数。
* @param event
* @param callback
*/
on(event: string | string[], callback: CallbackFunction): void
/**
* 监听 service 层的自定义事件。仅触发一次,在第一次触发之后移除监听器。
* @param event
* @param callback
*/
once(event: string, callback: CallbackFunction): void
/**
* 移除 service 层的自定义事件监听器。
* 如果没有提供参数,则移除所有的事件监听器;
* 如果只提供了事件,则移除该事件所有的监听器;
* 如果同时提供了事件与回调,则只移除这个回调的监听器。
* @param event
* @param callback
*/
off(event?: string | string[], callback?: CallbackFunction): void
/**
* 触发 Service 层的事件。附加参数都会传给监听器回调。
* @param event
* @param args
*/
emit(event: string, ...args: any[]): void
/**
* 触发 Service 层事件类型API(on开头)回调。
* @param name
* @param res
*/
invokeOnCallback<T extends OnApiLike>(
name: string,
res?: Parameters<Parameters<T>[0]>[0]
): void
/**
* 订阅 View 的自定义事件,回调函数会接收所有传入事件触发函数的额外参数。
* @param event
* @param callback
* @param once 默认 false
*/
subscribe(event: string, callback: CallbackFunction, once?: boolean): void
/**
* 取消订阅 View 的自定义事件
* 如果没有提供参数,则移除所有的事件监听器;
* 如果只提供了事件,则移除该事件所有的监听器;
* 如果同时提供了事件与回调,则只移除这个回调的监听器。
* @param event
* @param callback
*/
unsubscribe(event: string, callback?: CallbackFunction): void
/**
* 向 View 层发送事件
* @param event
* @param args
* @param pageId
*/
publishHandler(event: string, args: unknown, pageId: number): void
/**
* 接收 View 层事件(通常由 View 层调用,并暴露至全局 UniServiceJSBridge 对象中)
* @param event
* @param args
* @param pageId
*/
subscribeHandler(event: string, args?: unknown, pageId?: number): void
/**
* 执行 View 层方法,并获取返回值
* @param name
* @param args
* @param pageId
* @param callback
*/
invokeViewMethod<Args = any, Res = any>(
name: string,
args: Args,
pageId: number,
callback?: (res: Res) => void
): void
/**
* 执行 View 层方法,并持久监听返回值
* @param name
* @param args
* @param pageId
* @param callback
*/
invokeViewMethodKeepAlive<Args = any, Res = any>(
name: string,
args: Args,
callback: (res: Res) => void,
pageId: number
): StopHandle
}
interface UniViewJSBridge {
/**
* 监听 View 的自定义事件。事件由 emit 触发,回调函数会接收所有传入事件触发函数的额外参数。
* @param event
* @param callback
*/
on(event: string | string[], callback: CallbackFunction): void
/**
* 监听 View 的自定义事件。仅触发一次,在第一次触发之后移除监听器。
* @param event
* @param callback
*/
once(event: string, callback: CallbackFunction): void
/**
* 移除 View 的自定义事件监听器。
* 如果没有提供参数,则移除所有的事件监听器;
* 如果只提供了事件,则移除该事件所有的监听器;
* 如果同时提供了事件与回调,则只移除这个回调的监听器。
* @param event
* @param callback
*/
off(event?: string | string[], callback?: CallbackFunction): void
/**
* 触发 View 的事件。附加参数都会传给监听器回调。
* @param event
* @param args
*/
emit(event: string, ...args: any[]): void
/**
* 订阅 Service 的自定义事件,回调函数会接收所有传入事件触发函数的额外参数。
* @param event
* @param callback
*/
subscribe(event: string, callback: CallbackFunction, once?: boolean): void
/**
* 取消订阅 Service 的自定义事件
* 如果没有提供参数,则移除所有的事件监听器;
* 如果只提供了事件,则移除该事件所有的监听器;
* 如果同时提供了事件与回调,则只移除这个回调的监听器。
* @param event
* @param callback
*/
unsubscribe(event: string, callback?: CallbackFunction): void
/**
* 接收 Service 层事件(通常由 Service 层调用,并暴露至全局 UniViewJSBridge 对象中)
* @param event
* @param args
* @param pageId
*/
subscribeHandler(event: string, args: unknown, pageId: number): void
/**
* 向 Service 层发送事件
* @param event
* @param args
* @param pageId
*/
publishHandler(event: string, args?: unknown, pageId?: number): void
/**
* 执行 View 层方法,并获取返回值
* @param name
* @param args
* @param callback
*/
invokeServiceMethod<Args = any, Res = any>(
name: string,
args: Args,
callback?: (res: Res) => void
): void
}
}
import UniApp = UniNamespace
interface FontFaceDescriptors {
variant?: string
}
declare class UniNormalPageImpl implements UniPage {
vm: ComponentPublicInstance
$vm: ComponentPublicInstance
route: string
options: UTSJSONObject
pageBody: UniPageBody
safeAreaInsets: UniSafeAreaInsets
getParentPage: () => UniPage | null
getParentPageByJS: () => UniPage | null
getDialogPages(): UniDialogPage[]
getPageStyle(): UTSJSONObject
$getPageStyle(): UTSJSONObject
getPageStyleByJS(): UTSJSONObject
setPageStyle(style: UTSJSONObject): void
$setPageStyle(style: UTSJSONObject): void
setPageStyleByJS(style: UTSJSONObject): void
getElementById(id: string.IDString | string): UniElement | null
getAndroidView(): null
getIOSView(): null
getHTMLElement(): null
}
declare class UniDialogPageImpl implements UniPage {
vm: ComponentPublicInstance
$vm: ComponentPublicInstance
route: string
options: UTSJSONObject
innerWidth: number
innerHeight: number
pageBody: UniPageBody
safeAreaInsets: UniSafeAreaInsets
getParentPage: () => UniPage | null
getParentPageByJS: () => UniPage | null
getDialogPages(): UniDialogPage[]
getPageStyle(): UTSJSONObject
$getPageStyle(): UTSJSONObject
getPageStyleByJS(): UTSJSONObject
setPageStyle(style: UTSJSONObject): void
$setPageStyle(style: UTSJSONObject): void
setPageStyleByJS(style: UTSJSONObject): void
getElementById(id: string.IDString | string): UniElement | null
getAndroidView(): null
getIOSView(): null
getHTMLElement(): null
$component: any | null
$disableEscBack: boolean
$triggerParentHide: boolean
}
declare function __registerWebViewUniConsole(
getEvalJSCode: () => string,
sendConsoleData: (data: string) => void
): void