Files
klz-cables.com/.pnpm-store/v10/files/5e/d5450f5b1181f331fb0f0f78a6e12cdde0140b92c621c330054186be935bb053061971b2fdfad8502b85d11545143f82f04b86d22b3000dba424f2d7313270
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
462 B
Plaintext

import type { ClientRect } from '../../types';
import type { CollisionDetection } from './types';
/**
* Returns the intersecting rectangle area between two rectangles
*/
export declare function getIntersectionRatio(entry: ClientRect, target: ClientRect): number;
/**
* Returns the rectangles that has the greatest intersection area with a given
* rectangle in an array of rectangles.
*/
export declare const rectIntersection: CollisionDetection;