Files
klz-cables.com/.pnpm-store/v10/files/4a/cb05c7db00935b03f3989acb0e894a206e8e1fb8f721510a42d007c48e2f4f4fa195d562462e4901ce095833a10e5412963ac9eb84fadc7d6b65f52c743eed
Marc Mintel 5397309103
Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 20s
Build & Deploy / 🧪 QA (push) Failing after 34s
Build & Deploy / 🏗️ Build (push) Has started running
Build & Deploy / 🚀 Deploy (push) Has been cancelled
Build & Deploy / 🧪 Smoke Test (push) Has been cancelled
Build & Deploy / ⚡ Lighthouse (push) Has been cancelled
Build & Deploy / 🔔 Notify (push) Has been cancelled
fix(products): fix breadcrumbs and product filtering (backport from main)
2026-02-24 16:04:21 +01:00

11 lines
463 B
Plaintext

import type { SyntheticListenerMap } from '@dnd-kit/core/dist/hooks/utilities';
import type { HTMLAttributes } from 'react';
export type UseDraggableSortableReturn = {
readonly attributes: HTMLAttributes<unknown>;
readonly isDragging?: boolean;
readonly listeners: SyntheticListenerMap;
readonly setNodeRef: (node: HTMLElement | null) => void;
readonly transform: string;
readonly transition: string;
};
//# sourceMappingURL=types.d.ts.map