UNPKG

@graphql-tools/utils

Version:

Common package containing utils and types for GraphQL tools

10 lines (9 loc) 305 B
import { type StringValueNode } from 'graphql'; interface ObjectWithDescription { astNode?: { description?: StringValueNode | null; } | null; description?: string | null; } export declare function getDescriptionNode(obj: ObjectWithDescription): StringValueNode | undefined; export {};