Files
klz-cables.com/.pnpm-store/v10/files/61/b94da67740c81a84f50143820cc78e79cd64112066f885e2d412c60eedaeda804a63c906ee88506c95230a08ace64933ca9428c9e75505076d48e49706ad97
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

16 lines
354 B
Plaintext

interface ISize {
width: number;
height: number;
orientation?: number;
type?: string;
}
type ISizeCalculationResult = {
images?: ISize[];
} & ISize;
interface IImage {
validate: (input: Uint8Array) => boolean;
calculate: (input: Uint8Array) => ISizeCalculationResult;
}
export type { IImage, ISize, ISizeCalculationResult };