File tree Expand file tree Collapse file tree 1 file changed +16
-8
lines changed Expand file tree Collapse file tree 1 file changed +16
-8
lines changed Original file line number Diff line number Diff line change @@ -1183,22 +1183,30 @@ export default {
1183
1183
} )
1184
1184
}
1185
1185
1186
+ import {
1187
+ DefineComponent ,
1188
+ ComponentOptionsMixin ,
1189
+ EmitsOptions ,
1190
+ VNodeProps ,
1191
+ AllowedComponentProps ,
1192
+ ComponentCustomProps ,
1193
+ ExtractPropTypes
1194
+ } from './index'
1195
+
1186
1196
// code generated by tsc / vue-tsc, make sure this continues to work
1187
1197
// so we don't accidentally change the args order of DefineComponent
1188
- declare const MyButton : import ( 'vue' ) . DefineComponent <
1198
+ declare const MyButton : DefineComponent <
1189
1199
{ } ,
1190
1200
( ) => JSX . Element ,
1191
1201
{ } ,
1192
1202
{ } ,
1193
1203
{ } ,
1194
- import ( 'vue' ) . ComponentOptionsMixin ,
1195
- import ( 'vue' ) . ComponentOptionsMixin ,
1196
- import ( 'vue' ) . EmitsOptions ,
1204
+ ComponentOptionsMixin ,
1205
+ ComponentOptionsMixin ,
1206
+ EmitsOptions ,
1197
1207
string ,
1198
- import ( 'vue' ) . VNodeProps &
1199
- import ( 'vue' ) . AllowedComponentProps &
1200
- import ( 'vue' ) . ComponentCustomProps ,
1201
- Readonly < import ( 'vue' ) . ExtractPropTypes < { } >> ,
1208
+ VNodeProps & AllowedComponentProps & ComponentCustomProps ,
1209
+ Readonly < ExtractPropTypes < { } > > ,
1202
1210
{ }
1203
1211
>
1204
1212
You can’t perform that action at this time.
0 commit comments