UNPKG

graphql-extra-scalars

Version:

Collection of extra GraphQL scalar types like Email, URL, Password and more

12 lines (10 loc) 340 B
/** * Flowtype definitions for limitedString * Generated by Flowgen from a Typescript Definition * Flowgen v1.9.2 */ import { GraphQLScalarType } from "graphql"; declare class GraphQLLimitedString mixins GraphQLScalarType { constructor(min?: number, max?: number, alphabet?: string): this; } declare export { GraphQLLimitedString };