Files
klz-cables.com/.pnpm-store/v10/files/ad/35178eec41311ad115717023130d04ac1a1cdf3d06d31b68d12d42dd97d21b220687946935d144a2b9570e084745431bb2ad12f4ad0d2a83968464763f3908
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

27 lines
861 B
Plaintext

import React from 'react';
import type { ReloadDoc } from '../types.js';
import './index.scss';
type Props = {
readonly allowEdit?: boolean;
readonly allowRemove?: boolean;
readonly alt: string;
readonly byteSize: number;
readonly className?: string;
readonly collectionSlug: string;
readonly displayPreview?: boolean;
readonly filename: string;
readonly id?: number | string;
readonly mimeType: string;
readonly onRemove: () => void;
readonly reloadDoc: ReloadDoc;
readonly showCollectionSlug?: boolean;
readonly src: string;
readonly thumbnailSrc: string;
readonly updatedAt?: string;
readonly withMeta?: boolean;
readonly x?: number;
readonly y?: number;
};
export declare function RelationshipContent(props: Props): React.JSX.Element;
export {};
//# sourceMappingURL=index.d.ts.map