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

11 lines
352 B
Plaintext

interface Arguments {
callback: MutationCallback;
disabled?: boolean;
}
/**
* Returns a new MutationObserver instance.
* If `MutationObserver` is undefined in the execution environment, returns `undefined`.
*/
export declare function useMutationObserver({ callback, disabled }: Arguments): MutationObserver | undefined;
export {};