/// import type { ModelInfo } from '../../../main'; import type { GraphQLResource } from '../../../intermediate/resource'; import type path from 'path'; import type { CompilerPlugin } from '../../../plugin'; export interface GraphQLAdapterPrinter { generate(modelInfo: ModelInfo, resource: GraphQLResource, compilerBaseOutputDir: path.ParsedPath, plugin: CompilerPlugin): { [path: string]: string; }; }