Files
yinxue 9e1b8bdc9d
Some checks failed
CI Pipeline / build (push) Failing after 3m23s
first-commit
2025-08-27 14:05:33 +08:00

41 lines
1.1 KiB
TypeScript

import * as vue from 'vue';
import { PropType } from 'vue';
import { ConfigurableDocument } from '@vueuse/core';
import { Options } from 'sortablejs';
type UseSortableOptions = Options & ConfigurableDocument;
declare const UseSortable: vue.DefineComponent<vue.ExtractPropTypes<{
modelValue: {
type: PropType<any[]>;
required: true;
};
tag: {
type: StringConstructor;
default: string;
};
options: {
type: PropType<UseSortableOptions>;
required: true;
};
}>, () => vue.VNode<vue.RendererNode, vue.RendererElement, {
[key: string]: any;
}> | undefined, {}, {}, {}, vue.ComponentOptionsMixin, vue.ComponentOptionsMixin, {}, string, vue.PublicProps, Readonly<vue.ExtractPropTypes<{
modelValue: {
type: PropType<any[]>;
required: true;
};
tag: {
type: StringConstructor;
default: string;
};
options: {
type: PropType<UseSortableOptions>;
required: true;
};
}>> & Readonly<{}>, {
tag: string;
}, {}, {}, {}, string, vue.ComponentProvideOptions, true, {}, any>;
export { UseSortable };