xwt
17 小时以前 8a5fc169c691543f60109b2b3a4e000762f247c2
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
import { ComponentInternalInstance } from 'vue';
import { ref } from 'vue';
import { shallowRef } from 'vue';
 
export declare function getSsrGlobalData(): any;
 
export declare const onAddToFavorites: (hook: () => any, target?: ComponentInternalInstance | null) => any;
 
export declare const onBackPress: (hook: () => any, target?: ComponentInternalInstance | null) => any;
 
export declare const onError: (hook: () => any, target?: ComponentInternalInstance | null) => any;
 
export declare const onHide: (hook: () => any, target?: ComponentInternalInstance | null) => any;
 
export declare const onLaunch: (hook: () => any, target?: ComponentInternalInstance | null) => any;
 
export declare const onNavigationBarButtonTap: (hook: () => any, target?: ComponentInternalInstance | null) => any;
 
export declare const onNavigationBarSearchInputChanged: (hook: () => any, target?: ComponentInternalInstance | null) => any;
 
export declare const onNavigationBarSearchInputClicked: (hook: () => any, target?: ComponentInternalInstance | null) => any;
 
export declare const onNavigationBarSearchInputConfirmed: (hook: () => any, target?: ComponentInternalInstance | null) => any;
 
export declare const onNavigationBarSearchInputFocusChanged: (hook: () => any, target?: ComponentInternalInstance | null) => any;
 
export declare const onPageNotFound: (hook: () => any, target?: ComponentInternalInstance | null) => any;
 
export declare const onPageScroll: (hook: () => any, target?: ComponentInternalInstance | null) => any;
 
export declare const onPullDownRefresh: (hook: () => any, target?: ComponentInternalInstance | null) => any;
 
export declare const onReachBottom: (hook: () => any, target?: ComponentInternalInstance | null) => any;
 
export declare const onReady: (hook: () => any, target?: ComponentInternalInstance | null) => any;
 
export declare const onResize: (hook: () => any, target?: ComponentInternalInstance | null) => any;
 
export declare const onShareAppMessage: (hook: () => any, target?: ComponentInternalInstance | null) => any;
 
export declare const onShareTimeline: (hook: () => any, target?: ComponentInternalInstance | null) => any;
 
export declare const onShow: (hook: () => any, target?: ComponentInternalInstance | null) => any;
 
export declare const onTabItemTap: (hook: () => any, target?: ComponentInternalInstance | null) => any;
 
export declare const onThemeChange: (hook: () => any, target?: ComponentInternalInstance | null) => any;
 
export declare const onUnhandledRejection: (hook: () => any, target?: ComponentInternalInstance | null) => any;
 
export declare const onUnload: (hook: () => any, target?: ComponentInternalInstance | null) => any;
 
export declare function resolveEasycom(component: unknown, easycom: unknown): unknown;
 
export declare const shallowSsrRef: SSRRef;
 
declare type SSRRef = (value: unknown, key?: string, shallow?: boolean) => ReturnType<typeof ref> | ReturnType<typeof shallowRef>;
 
export declare const ssrRef: SSRRef;
 
export { }