UNPKG

graphql-extra-scalars

Version:

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

7 lines (6 loc) 286 B
import * as validators from '../validators'; import { GraphQLScalarType } from 'graphql'; declare class GraphQLPassword extends GraphQLScalarType { constructor(min?: number, max?: number, alphabet?: string, complexity?: validators.ComplexityOptions); } export { GraphQLPassword, };