@dineug/erd-editor
Version:
Entity-Relationship Diagram Editor
20 lines (19 loc) • 566 B
TypeScript
import { FC } from '@dineug/r-html';
export type TextInputProps = {
class?: any;
title?: string;
placeholder?: string;
readonly?: boolean;
disabled?: boolean;
width?: number;
value: string;
numberOnly?: boolean;
autofocus?: boolean;
onInput?: (event: InputEvent) => void;
onChange?: (event: InputEvent) => void;
onBlur?: (event: FocusEvent) => void;
onKeyup?: (event: KeyboardEvent) => void;
onKeydown?: (event: KeyboardEvent) => void;
};
declare const TextInput: FC<TextInputProps>;
export default TextInput;