UNPKG

outfitter

Version:

Command-line tool for equipping your development journey with configurations and fieldguides

12 lines 682 B
import type { Package } from '../types/index.js'; import type { FieldguideRecommendation } from '../config/fieldguide-mappings.js'; export declare function selectConfigurations(packages: Array<Package>): Promise<Array<string>>; export declare function selectUtilities(packages: Array<Package>): Promise<Array<string>>; /** * Prompts the user to confirm whether to initialize git hooks. * * @returns A promise that resolves to true if the user confirms, or false otherwise. */ export declare function confirmGitHooks(): Promise<boolean>; export declare function showRecommendedFieldguides(fieldguides: Array<FieldguideRecommendation>): void; //# sourceMappingURL=prompts.d.ts.map