Files
klz-cables.com/.pnpm-store/v10/files/2b/8571b9a39c72d62a75c84de24d863b75b2d156722d4aa4aa238c49fd10f3d281ffee38126e8f6671275997a3d6aa64c0472f532e996c964dc967343240f7c4
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

11 lines
335 B
Plaintext

import type { ASTVisitor } from '../../language/visitor';
import type { SDLValidationContext } from '../ValidationContext';
/**
* Unique enum value names
*
* A GraphQL enum type is only valid if all its values are uniquely named.
*/
export declare function UniqueEnumValueNamesRule(
context: SDLValidationContext,
): ASTVisitor;