Files
klz-cables.com/.pnpm-store/v10/files/44/5f14e14241d07a6925a945ccf855e487668f4d1c03207e092a808ff5aeb80ec5383f4c2239531ca088c0ba206c6130433e43198abf3c7d5f51adc9e6e7d747
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
527 B
Plaintext

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