UNPKG

346 BTypeScriptView Raw
1import { GraphQLScalarType } from 'graphql';
2/**
3 * An Currency Scalar.
4 *
5 * Input:
6 * This scalar takes a currency string as input and
7 * formats it to currency in cents.
8 *
9 * Output:
10 * This scalar serializes currency in cents to
11 * currency strings.
12 */
13export declare const GraphQLUSCurrency: GraphQLScalarType<number, string>;