UNPKG

graphql-extra-scalars

Version:

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

6 lines (5 loc) 208 B
import { GraphQLScalarType } from 'graphql'; declare class GraphQLLimitedString extends GraphQLScalarType { constructor(min?: number, max?: number, alphabet?: string); } export { GraphQLLimitedString, };