-
Notifications
You must be signed in to change notification settings - Fork 3.7k
/
Copy pathshims-vue-runtime.d.ts
125 lines (118 loc) · 3.74 KB
/
shims-vue-runtime.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
import type { EventChannel, UniLifecycleHooks } from '@dcloudio/uni-shared'
import type {
ComponentCustomProperties,
ComponentInternalInstance,
Ref,
} from 'vue'
import type {
IPage,
UniElement,
ViewToTempFilePathOptions,
} from '@dcloudio/uni-app-x/types/native'
import type { UniDialogPage } from '@dcloudio/uni-app-x/types/page'
declare module '@vue/runtime-core' {
// 小程序
interface ComponentCustomProperties {
$vm: ComponentPublicInstance
globalData: Record<string, any>
$callHook: (hook: string, args?: unknown, extras?: unknown) => unknown
$callCreatedHook: () => void
}
interface ComponentCustomOptions {
rootElement?:
| {
name: string
class: CustomElementConstructor
options?: ElementDefinitionOptions
}
| 0
}
interface ComponentCustomProperties {
route: string
options?: Page.PageInstance['$page']['options']
$scope: {
is?: string
route?: string
$getAppWebview?: () => PlusWebviewWebviewObject
setData(data: Record<string, unknown>, callback?: () => void): void
}
// 目前 H5,APP 平台 getCurrentPages 中获取的 page 对象调整为 vm 对象
$getAppWebview?: () => PlusWebviewWebviewObject
// X iOS start
$nativePage?: IPage | null
$fontFamilySet: Set<string>
$viewToTempFilePath: (options: ViewToTempFilePathOptions) => void
// X iOS end
$requireNativePlugin?: (name: string) => unknown
getOpenerEventChannel: () => EventChannel | undefined
$page: Page.PageInstance['$page'] | UniPage | UniDialogPage
// X web start
$basePage: Page.PageInstance['$page']
$dialogPage?: UniDialogPage
$triggerParentHide?: boolean
$pageLayoutInstance: ComponentInternalInstance | null
// X web end
$mpType?: 'app' | 'page'
$locale?: string
}
type LifecycleHook = Function[] | null
type UniLifecycleHookInstance = {
[name in (typeof UniLifecycleHooks)[number]]: LifecycleHook
}
interface ComponentInternalInstance extends UniLifecycleHookInstance {
__isUnload: boolean
__isVisible: boolean
__isActive?: boolean // tabBar
__isTabBar?: boolean
// mp
$updateScopedSlots: () => void
$scopedSlotsData?: {
path: string
index: number
data: Record<string, unknown>
}[]
// h5 | app
$wxsModules?: string[]
// 暂定 h5
$pageInstance: ComponentInternalInstance
// x
$waitNativeRender: (fn: () => void) => void
$pageVm: ComponentPublicInstance | null
$parentInstance?: ComponentInternalInstance
$dialogPages?: Ref<UniDialogPage[]>
$systemDialogPages?: Ref<UniDialogPage[]>
$dialogPage?: UniDialogPage
$uniElements: Map<string, UniElement>
$uniElementIds: Map<string, { name: string }>
$templateUniElementRefs: {
i: string // id
r: VNodeRef
k?: string // setup ref key
f?: boolean // refInFor marker
v: null | UniElement | Array<UniElement | null>
}[]
// 模板绑定的 style ,key 为 elementId,值为 style 字符串,最终会合并到 $eS 中
$templateUniElementStyles: Record<string, string>
// 元素 style ,key 为 elementId,值为 style 字符串
$eS: Record<string, string>
}
export const onBeforeActivate: (fn: () => void) => void
export const onBeforeDeactivate: (fn: () => void) => void
export const injectHook: (
type: string,
hook: Function,
target: ComponentInternalInstance | null,
prepend?: boolean
) => Function | undefined
export const isInSSRComponentSetup: boolean
export const logError: (
err: unknown,
type: string,
contextVNode: VNode | null,
throwInDev?: boolean
) => void
export function registerCustomElement(
tagName: string,
elementClass: unknown
): void
}