UNPKG

360 BTypeScriptView Raw
1import { FileOutput } from 'graphql-codegen-core';
2import { CLIOptions } from './cli-options';
3export declare const cliError: (err: any, exitOnError?: boolean) => void;
4export declare const validateCliOptions: (options: CLIOptions) => void;
5export declare const executeWithOptions: (options: CLIOptions & {
6 [key: string]: any;
7}) => Promise<FileOutput[]>;