mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-09-29 01:55:01 +00:00
adding location to ranges and more control on MyCalendarRanges
This commit is contained in:
14
src/vue-multiselect.d.ts
vendored
Normal file
14
src/vue-multiselect.d.ts
vendored
Normal file
@@ -0,0 +1,14 @@
|
||||
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
|
||||
}
|
Reference in New Issue
Block a user