askeroo
Version:
A modern CLI prompt library with flow control, history navigation, and conditional prompts
11 lines • 336 B
TypeScript
import { MarkdownString } from "../../utils/markdown.js";
/**
* User-provided options for the note plugin
*/
export interface NoteOptions {
message: string | MarkdownString;
}
export declare function note(message: string | MarkdownString, options?: {
allowBack?: boolean;
}): Promise<void>;
//# sourceMappingURL=index.d.ts.map