Files
klz-cables.com/.pnpm-store/v10/files/20/468a3c2e8303bf9d81be05f1ad41b0e51be60dda018fd093b5732237f296f063b3c0ca2591c8f724c02632877f5093ecbe39660c5578f6cb8d2f018edb0645
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
491 B
Plaintext

import type { Collection, CollectionSlug, DataFromCollectionSlug, PayloadRequest } from 'payload';
export type Resolver<TData> = (_: unknown, args: {
data: TData;
draft: boolean;
fallbackLocale?: string;
id: string;
locale?: string;
}, context: {
req: PayloadRequest;
}) => Promise<TData>;
export declare function duplicateResolver<TSlug extends CollectionSlug>(collection: Collection): Resolver<DataFromCollectionSlug<TSlug>>;
//# sourceMappingURL=duplicate.d.ts.map