UNPKG

graphql

Version:

A Query Language and Runtime which can target any service.

12 lines (8 loc) 440 B
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;