1 | import { GraphQLList, GraphQLNamedType, GraphQLNonNull, GraphQLOutputType } from 'graphql';
|
2 | import { Types } from './types.js';
|
3 | export declare function mergeOutputs(content: Types.PluginOutput | Array<Types.PluginOutput>): string;
|
4 | export declare function isWrapperType(t: GraphQLOutputType): t is GraphQLNonNull<any> | GraphQLList<any>;
|
5 | export declare function getBaseType(type: GraphQLOutputType): GraphQLNamedType;
|
6 | export declare function removeNonNullWrapper(type: GraphQLOutputType): GraphQLOutputType;
|