UNPKG

@sodacore/cli

Version:

Sodacore CLI is a plugin that offers CLI functionality within the framework.

16 lines 623 B
import type { ConfirmOptions, SelectOptions, TextOptions } from '@clack/prompts'; export default class PromptsProvider { color: import("picocolors/types").Colors & { createColors: (enabled?: boolean) => import("picocolors/types").Colors; }; intro(text?: string): string; outro(text?: string): string; text(options: TextOptions): string; confirm(options: ConfirmOptions): string; select(options: SelectOptions<any>): string; cancel(text?: string): string; isCancel(value: any): string; startSpinner(): string; stopSpinner(): string; } //# sourceMappingURL=prompts.d.ts.map