@@ -105,8 +105,8 @@ declare module 'vue/types/options' {
105
105
}
106
106
107
107
declare module 'vue/types/vue' {
108
- export type OptionsVue < Instance extends Vue , Data , Methods , Computed , Props , Options = { } > = VueConstructor <
109
- CombinedVueInstance < Instance , Data , Methods , Computed , Props > & Vue ,
108
+ export type OptionsVue < Instance extends Vue , Data , Methods , Computed , Props , SetupBindings , Options = { } > = VueConstructor <
109
+ CombinedVueInstance < Instance , Data , Methods , Computed , Props , SetupBindings > & Vue ,
110
110
Options
111
111
>
112
112
@@ -154,10 +154,10 @@ declare module 'vue/types/vue' {
154
154
$_vuetify_installed ?: true
155
155
options : Options
156
156
157
- extend < Data , Methods , Computed , Options , PropNames extends string = never > ( options ?: ThisTypedComponentOptionsWithArrayProps < V , Data , Methods , Computed , PropNames > & Options ) : OptionsVue < V , Data , Methods , Computed , Record < PropNames , any > , Options >
158
- extend < Data , Methods , Computed , Props , Options > ( options ?: ThisTypedComponentOptionsWithRecordProps < V , Data , Methods , Computed , Props > & Options ) : OptionsVue < V , Data , Methods , Computed , Props , Options >
159
- extend < Options , PropNames extends string = never > ( definition : FunctionalComponentOptions < Record < PropNames , any > , PropNames [ ] > & Options ) : OptionsVue < V , { } , { } , { } , Record < PropNames , any > , Options >
157
+ extend < Data , Methods , Computed , Options , SetupBindings , PropNames extends string = never > ( options ?: ThisTypedComponentOptionsWithArrayProps < V , Data , Methods , Computed , PropNames , SetupBindings > & Options ) : OptionsVue < V , Data , Methods , Computed , Record < PropNames , any > , SetupBindings , Options >
158
+ extend < Data , Methods , Computed , Props , Options , SetupBindings > ( options ?: ThisTypedComponentOptionsWithRecordProps < V , Data , Methods , Computed , Props , SetupBindings > & Options ) : OptionsVue < V , Data , Methods , Computed , Props , SetupBindings , Options >
159
+ extend < Options , SetupBindings , PropNames extends string = never > ( definition : FunctionalComponentOptions < Record < PropNames , any > , PropNames [ ] > & Options ) : OptionsVue < V , { } , { } , { } , Record < PropNames , any > , SetupBindings , Options >
160
160
extend < Props , Options > ( definition : FunctionalComponentOptions < Props , RecordPropsDefinition < Props > > & Options ) : OptionsVue < V , { } , { } , { } , Props , Options >
161
- extend < V extends Vue = Vue > ( options ?: ComponentOptions < V > & Options ) : OptionsVue < V , { } , { } , { } , { } , Options >
161
+ extend < V extends Vue = Vue > ( options ?: ComponentOptions < V > & Options ) : OptionsVue < V , { } , { } , { } , { } , { } , Options >
162
162
}
163
163
}
0 commit comments