| 33 | import type { Maybe } from 'graphql-language-service'; |
| 34 | |
| 35 | export interface GraphQLInfoOptions { |
| 36 | schema?: GraphQLSchema; |
| 37 | onClick?: Maybe<(ref: Maybe<SchemaReference>, e: MouseEvent) => void>; |
| 38 | renderDescription?: (str: string) => string; |
| 39 | render?: () => string; |
| 40 | } |
| 41 | |
| 42 | /** |
| 43 | * Registers GraphQL "info" tooltips for CodeMirror. |
nothing calls this directly
no outgoing calls
no test coverage detected