File tree 2 files changed +5
-2
lines changed
packages/runtime-core/src
2 files changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -210,7 +210,8 @@ export function defineComponent<
210
210
: ExtractPropTypes < RuntimePropsOptions >
211
211
: { [ key in RuntimePropsKeys ] ?: any }
212
212
: TypeProps ,
213
- ResolvedProps = Readonly < InferredProps & EmitsToProps < ResolvedEmits > > ,
213
+ ResolvedProps = Readonly < InferredProps > &
214
+ Readonly < EmitsToProps < ResolvedEmits > > ,
214
215
TypeRefs extends Record < string , unknown > = { } ,
215
216
> (
216
217
options : {
Original file line number Diff line number Diff line change @@ -1279,7 +1279,9 @@ export type ComponentOptionsWithObjectProps<
1279
1279
Directives extends Record < string , Directive > = { } ,
1280
1280
Exposed extends string = string ,
1281
1281
Provide extends ComponentProvideOptions = ComponentProvideOptions ,
1282
- Props = Prettify < Readonly < ExtractPropTypes < PropsOptions > & EmitsToProps < E > > > ,
1282
+ Props = Prettify <
1283
+ Readonly < ExtractPropTypes < PropsOptions > > & Readonly < EmitsToProps < E > >
1284
+ > ,
1283
1285
Defaults = ExtractDefaultPropTypes < PropsOptions > ,
1284
1286
> = ComponentOptionsBase <
1285
1287
Props ,
You can’t perform that action at this time.
0 commit comments