Files
klz-cables.com/.pnpm-store/v10/files/ed/d66246e1fb284f0bd843a37c457a9f8fb6a30eacf832a26579a981834904a04ac739e9b19522c98420186aa2524649eb8a03a7991111ab11cb8710c86eb1af
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

18 lines
498 B
Plaintext

import type { DragEndEvent, DragStartEvent } from '@dnd-kit/core';
import type { Ref } from 'react';
export type Props = {
children: React.ReactNode;
className?: string;
droppableRef?: Ref<HTMLElement>;
ids: string[];
onDragEnd: (e: {
event: DragEndEvent;
moveFromIndex: number;
moveToIndex: number;
}) => void;
onDragStart?: (e: {
event: DragStartEvent;
id: number | string;
}) => void;
};
//# sourceMappingURL=types.d.ts.map