Files
klz-cables.com/.pnpm-store/v10/files/8a/31c737b883d862ae289504dc4a9a87a9f6cbfddfc3d35aaf72cb677a1f95ffb3a3dc8982666887c8c7866e4625ed41c8bf6d8fafaa78a7099c48ad0dd14481
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

21 lines
369 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: '%'
}