Files
klz-cables.com/.pnpm-store/v10/files/e1/373bf13d3fdd30b0178abf443bb9b19b73ce514af26913c954c14b3c3136f4f9518e7a1d94a27aa587d827a34cd93d9575470036927cbb1c8338686c24894d
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

15 lines
614 B
Plaintext

import React from 'react';
import './index.scss';
type Props = {
readonly as?: React.ElementType;
readonly children?: React.ReactNode;
readonly className?: string;
readonly disabled?: boolean;
readonly onClick: (e: React.MouseEvent) => void;
readonly onKeyDown?: (e: React.KeyboardEvent) => void;
readonly ref?: React.RefObject<HTMLDivElement>;
readonly thresholdPixels?: number;
};
export declare const DraggableWithClick: ({ as, children, className, disabled, onClick, onKeyDown, ref, thresholdPixels, }: Props) => React.JSX.Element;
export {};
//# sourceMappingURL=index.d.ts.map