Merge branch 'fix/select-exposed-methods' of https://github.com/J-Michalek/primevue into fix/select-exposed-methods

pull/7127/head
J-Michalek 2025-01-21 16:04:48 +01:00
commit 9a20148b5e
1 changed files with 2 additions and 2 deletions

View File

@ -932,11 +932,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>;
}
}