@zsviczian/excalidraw
Version:
Excalidraw as a React component
10 lines (9 loc) • 368 B
TypeScript
interface TTDDialogInputProps {
input: string;
placeholder: string;
onChange: (value: string) => void;
onKeyboardSubmit?: () => void;
errorLine?: number | null;
}
export declare const TTDDialogInput: ({ input, placeholder, onChange, onKeyboardSubmit, errorLine, }: TTDDialogInputProps) => import("react/jsx-runtime").JSX.Element | null;
export {};