mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-06-07 18:44:08 +00:00
15 lines
345 B
TypeScript
15 lines
345 B
TypeScript
declare module "vue-multiselect" {
|
|
import { defineComponent } from "vue";
|
|
|
|
export interface VueMultiselectProps<T> {
|
|
options: T;
|
|
searchable: boolean;
|
|
trackBy: keyof T;
|
|
label: keyof T;
|
|
}
|
|
|
|
const Component: ReturnType<typeof defineComponent<VueMultiselectProps<T>>>;
|
|
|
|
export default Component;
|
|
}
|