mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-10-08 14:29:42 +00:00
Ajout de commentaires supplémentaires aux motifs
This commit is contained in:
18
src/vue-multiselect.d.ts
vendored
18
src/vue-multiselect.d.ts
vendored
@@ -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;
|
||||
}
|
||||
|
Reference in New Issue
Block a user