(input: unknown)
| 41 | throw new Error('Expected GraphQLInterfaceType.'); |
| 42 | } |
| 43 | export function assertGraphQLUnionType(input: unknown): asserts input is GraphQLUnionType { |
| 44 | if (input instanceof GraphQLUnionType) { |
| 45 | return; |
| 46 | } |
| 47 | throw new Error('Expected GraphQLUnionType.'); |
| 48 | } |
| 49 | export function assertGraphQLInputObjectType( |
| 50 | input: unknown, |
| 51 | ): asserts input is GraphQLInputObjectType { |
no outgoing calls
no test coverage detected