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

12 lines
488 B
Plaintext

import type { Sharp, Metadata as SharpMetadata } from 'sharp';
import type { PayloadRequest } from '../types/index.js';
export type WithMetadata = ((options: {
metadata: SharpMetadata;
req: PayloadRequest;
}) => Promise<boolean>) | boolean;
export declare function optionallyAppendMetadata({ req, sharpFile, withMetadata, }: {
req: PayloadRequest;
sharpFile: Sharp;
withMetadata: WithMetadata;
}): Promise<Sharp>;
//# sourceMappingURL=optionallyAppendMetadata.d.ts.map