askeroo
Version:
A modern CLI prompt library with flow control, history navigation, and conditional prompts
14 lines • 466 B
TypeScript
import { PromptRequest } from "../types/index.js";
declare global {
interface Window {
__promptTreeDebug?: any;
}
var __debugTree: (() => void) | undefined;
}
interface PromptAppProps {
onReady: (promptFn: (request: PromptRequest) => Promise<any>) => void;
runtime?: any;
}
export declare function PromptApp({ onReady, runtime }: PromptAppProps): import("react/jsx-runtime").JSX.Element;
export {};
//# sourceMappingURL=PromptApp.d.ts.map