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

16 lines
510 B
Plaintext

import React from 'react';
import './index.scss';
export type OnCancel = () => void;
export type ConfirmationModalProps = {
body: React.ReactNode;
cancelLabel?: string;
className?: string;
confirmingLabel?: string;
confirmLabel?: string;
heading: React.ReactNode;
modalSlug: string;
onCancel?: OnCancel;
onConfirm: () => Promise<void> | void;
};
export declare function ConfirmationModal(props: ConfirmationModalProps): React.JSX.Element;
//# sourceMappingURL=index.d.ts.map