9 lines
220 B
TypeScript
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 {};
|