Files
klz-cables.com/.pnpm-store/v10/files/e5/677a10b74dc9bd72f8b3e6ec89e1e651147414457435567a19b78af1a8d93cf6da0d53eab766864e3e3d3d5c9ead2acbbfa8554e621eb681870842f2aeb7bd
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

8 lines
538 B
Plaintext

import { IImage } from './interface.js';
declare const typeHandlers: Map<"bmp" | "cur" | "dds" | "gif" | "heif" | "icns" | "ico" | "j2c" | "jp2" | "jpg" | "jxl" | "jxl-stream" | "ktx" | "png" | "pnm" | "psd" | "svg" | "tga" | "tiff" | "webp", IImage>;
declare const types: ("bmp" | "cur" | "dds" | "gif" | "heif" | "icns" | "ico" | "j2c" | "jp2" | "jpg" | "jxl" | "jxl-stream" | "ktx" | "png" | "pnm" | "psd" | "svg" | "tga" | "tiff" | "webp")[];
type imageType = (typeof types)[number];
export { type imageType, typeHandlers, types };