Merge pull request #7125 from J-Michalek/fix/multiselect-exposed-methods
fix(multi-select): add exposed methods to typespull/7131/head
commit
5ccc07fc94
|
@ -938,11 +938,11 @@ export interface MultiSelectMethods {
|
|||
* @group Component
|
||||
*
|
||||
*/
|
||||
declare const MultiSelect: DefineComponent<MultiSelectProps, MultiSelectSlots, MultiSelectEmits>;
|
||||
declare const MultiSelect: DefineComponent<MultiSelectProps, MultiSelectSlots, MultiSelectEmits, MultiSelectMethods>;
|
||||
|
||||
declare module 'vue' {
|
||||
export interface GlobalComponents {
|
||||
MultiSelect: DefineComponent<MultiSelectProps, MultiSelectSlots, MultiSelectEmits>;
|
||||
MultiSelect: DefineComponent<MultiSelectProps, MultiSelectSlots, MultiSelectEmits, MultiSelectMethods>;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue