UNPKG

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