UNPKG

pastoralist

Version:

A tool to watch over node module resolutions and overrides

11 lines (10 loc) 767 B
import type { PromptChoiceOption } from "./types"; export declare function formatConfirmPrompt(message: string, defaultValue?: boolean): string; export declare function formatChoiceList(message: string, choices: PromptChoiceOption[]): string; export declare function formatChoicePrompt(): string; export declare function formatInputPrompt(message: string, defaultValue?: string): string; export declare function formatStepHeader(stepNumber: number, title: string): string; export declare function formatInfo(message: string): string; export declare function formatSuccess(message: string): string; export declare function formatWarning(message: string): string; export declare function formatCompletion(title: string, steps: string[], shimmerTitle?: string): string;