(input: unknown)
| 29 | throw new Error('Expected GraphQLObjectType.'); |
| 30 | } |
| 31 | export function assertGraphQLScalerType(input: unknown): asserts input is GraphQLScalarType { |
| 32 | if (input instanceof GraphQLScalarType) { |
| 33 | return; |
| 34 | } |
| 35 | throw new Error('Expected GraphQLScalerType.'); |
| 36 | } |
| 37 | export function assertGraphQLInterfaceType(input: unknown): asserts input is GraphQLInterfaceType { |
| 38 | if (input instanceof GraphQLInterfaceType) { |
| 39 | return; |
no outgoing calls
no test coverage detected