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

38 lines
1.2 KiB
Plaintext

import type {
ASTNode,
ConstValueNode,
DefinitionNode,
ExecutableDefinitionNode,
SchemaCoordinateNode,
SelectionNode,
TypeDefinitionNode,
TypeExtensionNode,
TypeNode,
TypeSystemDefinitionNode,
TypeSystemExtensionNode,
ValueNode,
} from './ast';
export declare function isDefinitionNode(node: ASTNode): node is DefinitionNode;
export declare function isExecutableDefinitionNode(
node: ASTNode,
): node is ExecutableDefinitionNode;
export declare function isSelectionNode(node: ASTNode): node is SelectionNode;
export declare function isValueNode(node: ASTNode): node is ValueNode;
export declare function isConstValueNode(node: ASTNode): node is ConstValueNode;
export declare function isTypeNode(node: ASTNode): node is TypeNode;
export declare function isTypeSystemDefinitionNode(
node: ASTNode,
): node is TypeSystemDefinitionNode;
export declare function isTypeDefinitionNode(
node: ASTNode,
): node is TypeDefinitionNode;
export declare function isTypeSystemExtensionNode(
node: ASTNode,
): node is TypeSystemExtensionNode;
export declare function isTypeExtensionNode(
node: ASTNode,
): node is TypeExtensionNode;
export declare function isSchemaCoordinateNode(
node: ASTNode,
): node is SchemaCoordinateNode;