Files
klz-cables.com/.pnpm-store/v10/files/ad/76a337fcb9882ba78d36174ccf9b2b566cdd2fa362f3ae01d88ee41fff256da2a19b62a13b00ffcd36d58814b9287c1d20999f8f4db00f54b5501e3528f939
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

15 lines
658 B
Plaintext

import { Context } from '../../core/context';
export declare class Bounds {
readonly left: number;
readonly top: number;
readonly width: number;
readonly height: number;
constructor(left: number, top: number, width: number, height: number);
add(x: number, y: number, w: number, h: number): Bounds;
static fromClientRect(context: Context, clientRect: ClientRect): Bounds;
static fromDOMRectList(context: Context, domRectList: DOMRectList): Bounds;
static EMPTY: Bounds;
}
export declare const parseBounds: (context: Context, node: Element) => Bounds;
export declare const parseDocumentSize: (document: Document) => Bounds;