mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-09-29 01:55:01 +00:00
Apply prettier rules
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