Files
klz-cables.com/.pnpm-store/v10/files/90/dfe724f7ce2a1a3425e0bb229758f7ec38dbc4ed592e01412f06cde7a71c82057d4796423e523d1b0dda7219a4dae3b120f1935210293923459bb85f73a3cb
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

16 lines
533 B
Plaintext

import type { FetchAPIFileUploadOptions } from '../../config/types.js';
import type { FileShape } from './index.js';
type FileFactoryOptions = {
buffer: Buffer;
encoding: string;
hash: Buffer | string;
mimetype: string;
name: string;
size: number;
tempFilePath: string;
truncated: boolean;
};
type FileFactory = (options: FileFactoryOptions, fileUploadOptions: FetchAPIFileUploadOptions) => FileShape;
export declare const fileFactory: FileFactory;
export {};
//# sourceMappingURL=fileFactory.d.ts.map