DefinitelyTyped/types/graphql-type-json/index.d.ts
Brendan M e18af54e46 Add GraphQLJSONObject type to graphql-type-json definition (#35190)
* update graphql-type-json definitions

* update tests
2019-05-13 09:49:13 -07:00

13 lines
434 B
TypeScript

// Type definitions for graphql-type-json 0.3
// Project: https://github.com/taion/graphql-type-json#readme
// Definitions by: Pavel Ivanov <https://github.com/schfkt>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
// TypeScript Version: 2.6
import { GraphQLScalarType } from "graphql";
export const GraphQLJSONObject: GraphQLScalarType;
export const GraphQLJSON: GraphQLScalarType;
export default GraphQLJSON;