@@ -10,14 +10,8 @@ import { Teleport, TeleportProps } from './components/Teleport'
10
10
import { Suspense , SuspenseProps } from './components/Suspense'
11
11
import { isObject , isArray } from '@vue/shared'
12
12
import { RawSlots } from './componentSlots'
13
- import { FunctionalComponent } from './component'
14
- import {
15
- ComponentOptionsWithoutProps ,
16
- ComponentOptionsWithArrayProps ,
17
- ComponentOptionsWithObjectProps ,
18
- ComponentOptions
19
- } from './componentOptions'
20
- import { ExtractPropTypes } from './componentProps'
13
+ import { FunctionalComponent , Component } from './component'
14
+ import { ComponentOptions } from './componentOptions'
21
15
22
16
// `h` is a more user-friendly version of `createVNode` that allows omitting the
23
17
// props when possible. It is intended for manually written render functions.
@@ -108,27 +102,19 @@ export function h(
108
102
) : VNode
109
103
110
104
// functional component
111
- export function h ( type : FunctionalComponent , children ?: RawChildren ) : VNode
112
105
export function h < P > (
113
106
type : FunctionalComponent < P > ,
114
107
props ?: ( RawProps & P ) | ( { } extends P ? null : never ) ,
115
108
children ?: RawChildren | RawSlots
116
109
) : VNode
117
110
118
- // stateful component
119
- export function h ( type : ComponentOptions , children ?: RawChildren ) : VNode
111
+ // catch-all for generic component types
112
+ export function h ( type : Component , children ?: RawChildren ) : VNode
120
113
export function h (
121
- type : ComponentOptionsWithoutProps | ComponentOptionsWithArrayProps ,
114
+ type : ComponentOptions | FunctionalComponent < { } > ,
122
115
props ?: RawProps | null ,
123
116
children ?: RawChildren | RawSlots
124
117
) : VNode
125
- export function h < O > (
126
- type : ComponentOptionsWithObjectProps < O > ,
127
- props ?:
128
- | ( RawProps & ExtractPropTypes < O > )
129
- | ( { } extends ExtractPropTypes < O > ? null : never ) ,
130
- children ?: RawChildren | RawSlots
131
- ) : VNode
132
118
133
119
// fake constructor type returned by `defineComponent` or class component
134
120
export function h ( type : Constructor , children ?: RawChildren ) : VNode
0 commit comments