Files
klz-cables.com/.pnpm-store/v10/files/d5/0c5ff8048e425354ec57f18d786e12e8aa5be44a9df4bca206efdf020b1b5c2d2b2473c32f2455802da3b90f82a7b9ca13b538c69d0c597e98add705323a37
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

8 lines
282 B
Plaintext

export declare class Listeners {
private target;
private listeners;
constructor(target: EventTarget | null);
add<T extends Event>(eventName: string, handler: (event: T) => void, options?: AddEventListenerOptions | boolean): void;
removeAll: () => void;
}