Files
klz-cables.com/.pnpm-store/v10/files/b6/11f8b27ce32858b18232aeb1c6707596b54f37624ab6498e3a1439046c0f26c1a00906f0af9e2f2657965b89c4e6e2b3f7f5e0fd7b41a7fbbf084f2963effb
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
524 B
Plaintext

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