Files
klz-cables.com/.pnpm-store/v10/files/b5/5b55679ce5c67b1e40d13cbf41dee073f13af9bd5628f6465df830175badb77fe26ed6cb5bdd35d402b1bc28fdf12a6c85deb1eabadb1419752f31d8673421
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

12 lines
486 B
Plaintext

import React from 'react';
import './index.scss';
export type Props = {
readonly children?: React.ReactNode;
readonly className?: string;
readonly disabled?: boolean;
readonly dropzoneStyle?: 'default' | 'none';
readonly multipleFiles?: boolean;
readonly onChange: (e: FileList) => void;
};
export declare function Dropzone({ children, className, disabled, dropzoneStyle, multipleFiles, onChange, }: Props): React.JSX.Element;
//# sourceMappingURL=index.d.ts.map