blob: 71593d10c261a84bd72062daf41df1b78e725f46 [file] [log] [blame]
import { GraphQLScalarType, GraphQLNamedType } from './definition';
export const GraphQLInt: GraphQLScalarType;
export const GraphQLFloat: GraphQLScalarType;
export const GraphQLString: GraphQLScalarType;
export const GraphQLBoolean: GraphQLScalarType;
export const GraphQLID: GraphQLScalarType;
export const specifiedScalarTypes: ReadonlyArray<GraphQLScalarType>;
export function isSpecifiedScalarType(type: GraphQLNamedType): boolean;