@types/graphql
Advanced tools
Comparing version 0.12.2 to 0.12.3
{ | ||
"name": "@types/graphql", | ||
"version": "0.12.2", | ||
"version": "0.12.3", | ||
"description": "TypeScript definitions for graphql", | ||
@@ -75,4 +75,4 @@ "license": "MIT", | ||
"dependencies": {}, | ||
"typesPublisherContentHash": "6104419bbdb0699993b5f1d1c9b4bcc6413a7965d632c29eeca3c616e59a2155", | ||
"typesPublisherContentHash": "c0a8a4db28ee02fe97bf0f0d223baaa0c5bb856a6305265bcfe83d4f4e137bb5", | ||
"typeScriptVersion": "2.3" | ||
} |
@@ -11,3 +11,3 @@ # Installation | ||
Additional Details | ||
* Last updated: Wed, 24 Jan 2018 18:35:42 GMT | ||
* Last updated: Thu, 25 Jan 2018 17:59:35 GMT | ||
* Dependencies: none | ||
@@ -14,0 +14,0 @@ * Global values: none |
import { GraphQLSchema } from '../type/schema'; | ||
import { GraphQLType } from '../type/definition'; | ||
export function printSchema(schema: GraphQLSchema): string; | ||
export interface PrinterOptions { | ||
commentDescriptions?: boolean; | ||
} | ||
export function printIntrospectionSchema(schema: GraphQLSchema): string; | ||
export function printSchema(schema: GraphQLSchema, options?: PrinterOptions): string; | ||
export function printType(type: GraphQLType): string; | ||
export function printIntrospectionSchema(schema: GraphQLSchema, options?: PrinterOptions): string; | ||
export function printType(type: GraphQLType, options?: PrinterOptions): string; |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
95535
2948