Files
klz-cables.com/.pnpm-store/v10/files/93/2922b0ce91d30d1438ca1bde6e331f592c74bdb24bd1bd042d05c07c2131e857160c1e7b4e097f6f56ef83dac9ac350d5a9d84a57bd01728f70f210d50b321
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

10 lines
330 B
Plaintext

import { ISizeCalculationResult } from './types/interface.mjs';
declare const setConcurrency: (c: number) => void;
/**
* @param {string} filePath - relative/absolute path of the image file
*/
declare const imageSizeFromFile: (filePath: string) => Promise<ISizeCalculationResult>;
export { imageSizeFromFile, setConcurrency };