@dineug/erd-editor
Version:
Entity-Relationship Diagram Editor
17 lines (16 loc) • 440 B
TypeScript
import { FC } from '@dineug/r-html';
export type EditInputProps = {
class?: any;
placeholder?: string;
title?: string;
edit: boolean;
focus: boolean;
width: number;
value: string;
autofocus?: boolean;
onInput?: (event: InputEvent) => void;
onBlur?: (event: FocusEvent) => void;
onKeydown?: (event: KeyboardEvent) => void;
};
declare const EditInput: FC<EditInputProps>;
export default EditInput;