Files
klz-cables.com/.pnpm-store/v10/files/71/81958feb96650f609906e393c89fe0a74ba3a9f9d66fb46a88c59acad7da7f5979a75e29781f514c277673ab9efd5baad7f27529bffa5d9ef61d0d4542cb59
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

13 lines
396 B
Plaintext

import type { Collection, PayloadRequest, Where } from 'payload';
export type Resolver = (_: unknown, args: {
data: Record<string, unknown>;
locale?: string;
trash?: boolean;
where?: Where;
}, context: {
req: PayloadRequest;
}) => Promise<{
totalDocs: number;
}>;
export declare function countResolver(collection: Collection): Resolver;
//# sourceMappingURL=count.d.ts.map