@graphql-codegen/cli
Version:
14 lines (13 loc) • 468 B
text/typescript
import { Tags, type Answers, type PluginOption } from './types.cjs';
export declare function getAnswers(possibleTargets: Record<Tags, boolean>): Promise<Answers>;
export declare function getApplicationTypeChoices(possibleTargets: Record<Tags, boolean>): {
name: string;
key: string;
value: Tags[];
checked: boolean;
}[];
export declare function getPluginChoices(targets: Tags[]): {
name: string;
value: PluginOption;
checked: boolean;
}[];