@@ -67,30 +67,6 @@ type DefineComponent<
67
67
props : PropsOrPropOptions
68
68
}
69
69
70
- /**
71
- * overload 0.0: functional component with array props
72
- */
73
- export function defineComponent <
74
- PropNames extends string ,
75
- Props = Readonly < { [ key in PropNames ] ?: any } >
76
- > ( options : {
77
- functional : true
78
- props ?: PropNames [ ]
79
- render ?: ( h : CreateElement , context : RenderContext < Props > ) => any
80
- } ) : DefineComponent < Props >
81
-
82
- /**
83
- * overload 0.1: functional component with object props
84
- */
85
- export function defineComponent <
86
- PropsOptions extends ComponentPropsOptions = ComponentPropsOptions ,
87
- Props = ExtractPropTypes < PropsOptions >
88
- > ( options : {
89
- functional : true
90
- props ?: PropsOptions
91
- render ?: ( h : CreateElement , context : RenderContext < Props > ) => any
92
- } ) : DefineComponent < PropsOptions >
93
-
94
70
/**
95
71
* overload 1: object format with no props
96
72
*/
@@ -104,7 +80,7 @@ export function defineComponent<
104
80
Emits extends EmitsOptions = { } ,
105
81
EmitsNames extends string = string
106
82
> (
107
- options : ComponentOptionsWithoutProps <
83
+ options : { functional ?: never } & ComponentOptionsWithoutProps <
108
84
{ } ,
109
85
RawBindings ,
110
86
D ,
@@ -135,7 +111,7 @@ export function defineComponent<
135
111
EmitsNames extends string = string ,
136
112
PropsOptions extends ComponentPropsOptions = ComponentPropsOptions
137
113
> (
138
- options : ComponentOptionsWithArrayProps <
114
+ options : { functional ?: never } & ComponentOptionsWithArrayProps <
139
115
PropNames ,
140
116
RawBindings ,
141
117
D ,
@@ -175,7 +151,7 @@ export function defineComponent<
175
151
PropsOptions extends ComponentPropsOptions = ComponentPropsOptions
176
152
> (
177
153
options : HasDefined < Props > extends true
178
- ? ComponentOptionsWithProps <
154
+ ? { functional ?: never } & ComponentOptionsWithProps <
179
155
PropsOptions ,
180
156
RawBindings ,
181
157
D ,
@@ -187,7 +163,7 @@ export function defineComponent<
187
163
EmitsNames ,
188
164
Props
189
165
>
190
- : ComponentOptionsWithProps <
166
+ : { functional ?: never } & ComponentOptionsWithProps <
191
167
PropsOptions ,
192
168
RawBindings ,
193
169
D ,
@@ -199,3 +175,27 @@ export function defineComponent<
199
175
EmitsNames
200
176
>
201
177
) : DefineComponent < PropsOptions , RawBindings , D , C , M , Mixin , Extends , Emits >
178
+
179
+ /**
180
+ * overload 4.1: functional component with array props
181
+ */
182
+ export function defineComponent <
183
+ PropNames extends string ,
184
+ Props = Readonly < { [ key in PropNames ] ?: any } >
185
+ > ( options : {
186
+ functional : true
187
+ props ?: PropNames [ ]
188
+ render ?: ( h : CreateElement , context : RenderContext < Props > ) => any
189
+ } ) : DefineComponent < Props >
190
+
191
+ /**
192
+ * overload 4.2: functional component with object props
193
+ */
194
+ export function defineComponent <
195
+ PropsOptions extends ComponentPropsOptions = ComponentPropsOptions ,
196
+ Props = ExtractPropTypes < PropsOptions >
197
+ > ( options : {
198
+ functional : true
199
+ props ?: PropsOptions
200
+ render ?: ( h : CreateElement , context : RenderContext < Props > ) => any
201
+ } ) : DefineComponent < PropsOptions >
0 commit comments