UNPKG

graphql-scalars

Version:

A collection of scalar types not included in base GraphQL.

33 lines (32 loc) 1.47 kB
/// <reference types="node" /> export declare const BigInt: () => number; export declare const DateTime: () => Date; export declare const EmailAddress: () => string; export declare const NegativeFloat: () => number; export declare const NegativeInt: () => number; export declare const NonNegativeFloat: () => number; export declare const NonNegativeInt: () => number; export declare const NonPositiveFloat: () => number; export declare const NonPositiveInt: () => number; export declare const PhoneNumber: () => string; export declare const PositiveFloat: () => number; export declare const PositiveInt: () => number; export declare const PostalCode: () => string; declare const URLMock: () => URL; export declare const GUID: () => string; export declare const HexColorCode: () => string; export declare const Hexadecimal: () => string; export declare const HSL: () => string; export declare const HSLA: () => string; export declare const IPv4: () => string; export declare const IPv6: () => string; export declare const MAC: () => string; export declare const Port: () => number; export declare const RGB: () => string; export declare const RGBA: () => string; export declare const ISBN: () => string; export declare const USCurrency: () => number; export declare const JSON: () => {}; export declare const JSONObject: () => {}; import { URL } from 'url'; export { URLMock as URL, NonNegativeInt as UnsignedInt, NonNegativeFloat as UnsignedFloat, BigInt as Long, };