graphql-type-json
Version:
JSON scalar types for GraphQL.js
12 lines (7 loc) • 319 B
TypeScript
// TypeScript Version: 3.0
import { GraphQLScalarType } from 'graphql';
// This named export is intended for users of CommonJS. Users of ES modules
// should instead use the default export.
export const GraphQLJSON: GraphQLScalarType;
export default GraphQLJSON;
export const GraphQLJSONObject: GraphQLScalarType;