UNPKG

@saeris/graphql-scalars

Version:

A collection of scalar types using Joi for validation

11 lines (10 loc) 258 B
import { GraphQLScalarType } from "graphql"; interface Config { name: string; regex: RegExp; } export declare const regularExpressionFactory: ({ name, regex }: Config) => { scalar: string; resolver: GraphQLScalarType; }; export {};