UNPKG

graphql-scalars

Version:

A collection of scalar types not included in base GraphQL.

5 lines (4 loc) 254 B
import { ASTNode, GraphQLScalarType } from 'graphql'; export declare const LOCAL_TIME_FORMAT: RegExp; export declare function validateLocalTime(value: any, ast?: ASTNode): string; export declare const GraphQLLocalTime: GraphQLScalarType<string, string>;