Ajout de commentaires supplémentaires aux motifs

This commit is contained in:
2025-07-11 14:06:40 +00:00
parent 837089ff5d
commit 63d0a52ea1
392 changed files with 35466 additions and 24054 deletions

View File

@@ -1,14 +1,14 @@
declare module "vue-multiselect" {
import { defineComponent } from "vue";
import { defineComponent } from "vue";
export interface VueMultiselectProps<T> {
options: T;
searchable: boolean;
trackBy: keyof T;
label: keyof T;
}
export interface VueMultiselectProps<T> {
options: T;
searchable: boolean;
trackBy: keyof T;
label: keyof T;
}
const Component: ReturnType<typeof defineComponent<VueMultiselectProps<T>>>;
const Component: ReturnType<typeof defineComponent<VueMultiselectProps<T>>>;
export default Component;
export default Component;
}