UNPKG

graphql-composer

Version:
5 lines (4 loc) 397 B
import { GraphQLScalarType } from "graphql"; import { RequiredType, GQLObjectType, EnumType, UnionType, NullableType } from ".."; import { ClassType } from "../interfaces"; export declare type FieldType = typeof Boolean | typeof Number | typeof String | typeof Date | GraphQLScalarType | GQLObjectType<any, any, any> | EnumType | UnionType | FieldType[] | ClassType | RequiredType | NullableType;