Files
klz-cables.com/.pnpm-store/v10/files/07/1c79f8bc933727b51a4470e922b7e972ddc09cc1f771d5d9fefd1159183587ac2485d3e29b6f633f4c8fdb91b5422e63f6fc8b117775d342a1cf2966e09c84
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
535 B
Plaintext

import type { FetchAPIFileUploadOptions } from '../../config/types.js';
type Handler = (options: FetchAPIFileUploadOptions, fieldname: string, filename: string) => {
cleanup: () => void;
complete: () => Buffer;
dataHandler: (data: Buffer) => void;
getFilePath: () => string;
getFileSize: () => number;
getHash: () => string;
getWritePromise: () => Promise<boolean>;
};
export declare const tempFileHandler: Handler;
export declare const memHandler: Handler;
export {};
//# sourceMappingURL=handlers.d.ts.map