Revert "Merge branch 'ticket/supplementary-comments-on-motive' into 'master'"

This reverts merge request !855
This commit is contained in:
2025-07-20 18:50:33 +00:00
parent 5f01673404
commit e3a6b60fa2
392 changed files with 24023 additions and 35435 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;
}