django-vue3-admin-web/node_modules/@fast-crud/fast-crud/dist/d/use/use-drag.d.ts
2025-10-20 21:21:14 +08:00

9 lines
220 B
TypeScript

export type DragModalOptions = {
getModal: () => HTMLElement;
};
declare function dragModal(opts: DragModalOptions): Promise<void>;
export declare function useDrag(): {
dragModal: typeof dragModal;
};
export {};