UNPKG

305 BTypeScriptView Raw
1import { type StringValueNode } from 'graphql';
2interface ObjectWithDescription {
3 astNode?: {
4 description?: StringValueNode | null;
5 } | null;
6 description?: string | null;
7}
8export declare function getDescriptionNode(obj: ObjectWithDescription): StringValueNode | undefined;
9export {};