1 | import type { GraphQLNamedType } from './definition';
|
2 | import { GraphQLScalarType } from './definition';
|
3 |
|
4 |
|
5 |
|
6 |
|
7 | export declare const GRAPHQL_MAX_INT = 2147483647;
|
8 |
|
9 |
|
10 |
|
11 |
|
12 | export declare const GRAPHQL_MIN_INT = -2147483648;
|
13 | export declare const GraphQLInt: GraphQLScalarType<number, number>;
|
14 | export declare const GraphQLFloat: GraphQLScalarType<number, number>;
|
15 | export declare const GraphQLString: GraphQLScalarType<string, string>;
|
16 | export declare const GraphQLBoolean: GraphQLScalarType<boolean, boolean>;
|
17 | export declare const GraphQLID: GraphQLScalarType<string, string>;
|
18 | export declare const specifiedScalarTypes: ReadonlyArray<GraphQLScalarType>;
|
19 | export declare function isSpecifiedScalarType(type: GraphQLNamedType): boolean;
|