Files
klz-cables.com/.pnpm-store/v10/files/e2/96d9616fad7e3911463d51546ad59048405072fbf50360afa218e9d80a936ba497dec070f9a0c8d0c3aa4b872a863a956f3794f8d1fb48c0a5e058197ef465
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

12 lines
277 B
Plaintext

import type { ClientRect } from '../../types/rect';
export declare class Rect {
constructor(rect: ClientRect, element: Element);
private rect;
width: number;
height: number;
top: number;
bottom: number;
right: number;
left: number;
}