Files
klz-cables.com/.pnpm-store/v10/files/9f/ac42b9fa975cb8c4c6f64b075f724d928d3b58d9519c2550d58b21cacd3f8aec99c7cc8a3ead27db8da7455338fd737cc1c8a2605064a3bee69603ce9f47e7
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

29 lines
688 B
Plaintext

//#region src/types/assets.d.ts
/**
* The assets endpoint query parameters
*/
type AssetsQuery = {
key: string;
} | {
key?: never;
fit?: 'cover' | 'contain' | 'inside' | 'outside';
width?: number;
height?: number;
quality?: number;
withoutEnlargement?: boolean;
format?: 'auto' | 'jpg' | 'png' | 'webp' | 'tiff';
focal_point_x?: number;
focal_point_y?: number;
transforms?: [string, ...any[]][];
};
/**
* A Map of response `type` to the corresponding response format.
*/
type AssetResponse = {
raw: ReadableStream<Uint8Array>;
arrayBuffer: ArrayBuffer;
blob: Blob;
};
//#endregion
export { AssetResponse, AssetsQuery };
//# sourceMappingURL=assets.d.ts.map