Files
klz-cables.com/.pnpm-store/v10/files/b6/41b8802f5d3359f239c6fa4efae36215f283632eda397081c02eaf713f866f9a88e8091bcfb51538a1b73e10709d6b091c409e4970e8e86a1f8aa1a82f180f
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
523 B
Plaintext

import type { GraphQLResolveInfo } from 'graphql';
import type { Document, SanitizedGlobalConfig } from 'payload';
import type { Context } from '../types.js';
export type Resolver = (_: unknown, args: {
draft?: boolean;
fallbackLocale?: string;
id: number | string;
locale?: string;
select?: boolean;
}, context: Context, info: GraphQLResolveInfo) => Promise<Document>;
export declare function findVersionByID(globalConfig: SanitizedGlobalConfig): Resolver;
//# sourceMappingURL=findVersionByID.d.ts.map