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