UNPKG

@nanocollective/nanocoder

Version:

A local-first CLI coding agent that brings the power of agentic coding tools like Claude Code and Gemini CLI to local models or controlled APIs like OpenRouter

14 lines 614 B
export type Props = { readonly placeholder?: string; readonly focus?: boolean; readonly mask?: string; readonly showCursor?: boolean; readonly highlightPastedText?: boolean; readonly value: string; readonly onChange: (value: string) => void; readonly onSubmit?: (value: string) => void; readonly wrapWidth?: number; }; declare function TextInput({ value: originalValue, placeholder, focus, mask, highlightPastedText, showCursor, onChange, onSubmit, wrapWidth, }: Props): import("react/jsx-runtime").JSX.Element; export default TextInput; //# sourceMappingURL=text-input.d.ts.map