Files
klz-cables.com/.pnpm-store/v10/files/54/fe7bca94ff298d982f698d7848e17bc65e8237604f067f596350ea723bddabd6c884ccf1b0abc2c5baaabca03eae27eee97d3244496a9d1f5eed196ab35d2d
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

14 lines
462 B
Plaintext

import { ASTNode, GraphQLError, Source } from 'graphql';
interface GraphQLErrorOptions {
nodes?: ReadonlyArray<ASTNode> | ASTNode | null;
source?: Source;
positions?: ReadonlyArray<number>;
path?: ReadonlyArray<string | number>;
originalError?: Error & {
readonly extensions?: unknown;
};
extensions?: any;
}
export declare function createGraphQLError(message: string, options?: GraphQLErrorOptions): GraphQLError;
export {};