Files
klz-cables.com/.pnpm-store/v10/files/f2/68e064b52648fa19a6d23485706bbf3edb0f3abf6e4fac3ecabbfc712699314152ab8fb7487ab05bf663e95e5f7d45966c11010fbf7c09ffa10fcfecc47997
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

18 lines
391 B
Plaintext

export type XOrds = 'e' | 'w';
export type YOrds = 'n' | 's';
export type XYOrds = 'nw' | 'ne' | 'se' | 'sw';
export type Ords = XOrds | YOrds | XYOrds;
export interface Crop {
x: number;
y: number;
width: number;
height: number;
unit: 'px' | '%';
}
export interface PixelCrop extends Crop {
unit: 'px';
}
export interface PercentCrop extends Crop {
unit: '%';
}