askeroo
Version:
A modern CLI prompt library with flow control, history navigation, and conditional prompts
23 lines • 1.64 kB
TypeScript
import type { FlowFunction } from "./types/index.js";
export type { FlowFunction };
export { ask } from "./built-ins/ask/index.js";
export declare const BACK: {
__back: boolean;
};
export { createRuntime } from "./core/core.js";
export { registerPlugin, createPrompt, type PromptPlugin, } from "./core/registry.js";
export { text, type TextOptions } from "./built-ins/text/index.js";
export { confirm, type ConfirmOptions, type ConfirmOption, } from "./built-ins/confirm/index.js";
export { multi, type MultiOptions } from "./built-ins/multi/index.js";
export { note } from "./built-ins/note/index.js";
export { log, logInfo, logWarn, logError, logSuccess, type LogLevel, type LogOptions, } from "./built-ins/log/index.js";
export { radio, type RadioOptions, type RadioOption, } from "./built-ins/radio/index.js";
export { tasks, TaskWarning, type Task, type TaskLabel, } from "./built-ins/tasks/index.js";
export { spinner, type SpinnerLabel, type SpinnerSymbol, type SpinnerStatus, type SpinnerState, type SpinnerStyle, } from "./built-ins/spinner/index.js";
export { stream, spawnWithColors, type StreamOptions, type StreamStatus, type StreamState, type ColoredSpawnResult, } from "./built-ins/stream/index.js";
export { completedFields, type CompletedFieldsOptions, } from "./built-ins/completed-fields/index.js";
export { group, type GroupMeta, type GroupOpts, type GroupOptions, } from "./built-ins/group/index.js";
export { createAsk } from "./core/ask-factory.js";
export { type AskOptions } from "./built-ins/ask/index.js";
export { md, type MarkdownString } from "./utils/markdown.js";
//# sourceMappingURL=index.d.ts.map