askeroo
Version:
A modern CLI prompt library with flow control, history navigation, and conditional prompts
11 lines • 393 B
TypeScript
/**
* User-provided options for the text input plugin
*/
export interface TextOptions {
label: string;
shortLabel?: string;
initialValue?: string;
onSubmit?: (value: string) => string | void;
}
export declare const text: (opts?: import("../../types/index.js").PluginOptionsWithBuiltins<TextOptions, string> | undefined) => Promise<string>;
//# sourceMappingURL=index.d.ts.map