@graphql-codegen/cli
Version:
<p align="center"> <img src="https://github.com/dotansimha/graphql-code-generator/blob/master/logo.png?raw=true" /> </p>
9 lines (8 loc) • 312 B
TypeScript
import { Types } from '@graphql-codegen/plugin-helpers';
import { CodegenContext } from './config.js';
export declare function executeCodegen(input: CodegenContext | Types.Config, options?: {
onlyGeneratesKeys: Record<string, true>;
}): Promise<{
result: Types.FileOutput[];
error: Error | null;
}>;