graphql-extra-scalars
Version:
Collection of extra GraphQL scalar types like Email, URL, Password and more
18 lines (16 loc) • 433 B
JavaScript
/**
* Flowtype definitions for password
* Generated by Flowgen from a Typescript Definition
* Flowgen v1.9.2
*/
import * as validators from "../validators";
import { GraphQLScalarType } from "graphql";
declare class GraphQLPassword mixins GraphQLScalarType {
constructor(
min?: number,
max?: number,
alphabet?: string,
complexity?: validators.ComplexityOptions
): this;
}
declare export { GraphQLPassword };