UNPKG

@constructor-io/constructorio-connect-cli

Version:

CLI tool to enable users to interface with the Constructor Connect Ecosystem

9 lines 313 B
import { type PromptChoices } from "../types"; export declare function renderPrompt<T>({ choices, promptMessage, emptyMessage, }: Args<T>): Promise<T>; interface Args<T> { choices: PromptChoices<T>; promptMessage: string; emptyMessage?: string; } export {}; //# sourceMappingURL=render-prompt.d.ts.map