Files
klz-cables.com/.pnpm-store/v10/files/1b/4fe53b8107d6b47f7217865eb97328361b0ae0323c917b94919a1a8e1c8fc799d3afc69d8bfe5a63223d0bcafbdb7bce353e5b435d2b7d41d21e1c39230ba6
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

23 lines
640 B
Plaintext

export type CompareOption = {
label: React.ReactNode | string;
value: string;
};
export type VersionPill = {
id: string;
Label: React.ReactNode;
};
export type DefaultVersionsViewProps = {
canUpdate: boolean;
modifiedOnly: boolean;
RenderedDiff: React.ReactNode;
selectedLocales: string[];
versionFromCreatedAt?: string;
versionFromID?: string;
versionFromOptions: CompareOption[];
versionToCreatedAt?: string;
versionToCreatedAtFormatted: string;
VersionToCreatedAtLabel: React.ReactNode;
versionToID?: string;
versionToStatus?: string;
};
//# sourceMappingURL=types.d.ts.map