Files
klz-cables.com/.pnpm-store/v10/files/4a/5f4bf42c644f6d46e44c49ffb0e5d9d9b75398b2887369941ee273fe1c6d19a9df10b1f526d7afdc8ed8329315005708fa5ff0eae258a5300cea0cfdfc8e5f
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

20 lines
560 B
Plaintext

import type React from 'react';
export interface PopupMessage {
searchParams: {
[key: string]: string | undefined;
code: string;
installation_id: string;
state: string;
};
type: string;
}
export declare const usePopupWindow: (props: {
eventType?: string;
onMessage?: (searchParams: PopupMessage["searchParams"]) => Promise<void>;
url: string;
}) => {
isPopupOpen: boolean;
openPopupWindow: () => void;
popupRef?: React.RefObject<null | Window>;
};
//# sourceMappingURL=usePopupWindow.d.ts.map