UNPKG

510 BTypeScriptView Raw
1import { Types } from 'graphql-codegen-core';
2export declare function isOutputConfigArray(type: any): type is Types.OutputConfig[];
3export declare function isConfiguredOutput(type: any): type is Types.ConfiguredOutput;
4export declare function normalizeOutputParam(config: Types.OutputConfig | Types.ConfiguredOutput): Types.ConfiguredOutput;
5export declare function normalizeInstanceOrArray<T>(type: T | T[]): T[];
6export declare function normalizeConfig(config: Types.OutputConfig): Types.ConfiguredPlugin[];