Files
klz-cables.com/.pnpm-store/v10/files/c0/92a977f5d86bc67b0f26446aeff2ac4695f7ec7889720ef9038b9b668834dace7d684a335d36e37c783f8b853bcb320671445dda767559684d0dccf1fb917b
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

14 lines
405 B
Plaintext

import { imageType } from './types/index.mjs';
import { ISizeCalculationResult } from './types/interface.mjs';
/**
* Return size information based on an Uint8Array
*
* @param {Uint8Array} input
* @returns {ISizeCalculationResult}
*/
declare function imageSize(input: Uint8Array): ISizeCalculationResult;
declare const disableTypes: (types: imageType[]) => void;
export { disableTypes, imageSize };