zent
Version:
一套前端设计语言和基于React的实现
17 lines (16 loc) • 583 B
TypeScript
import { Component } from 'react';
export default class EditableInput extends Component<any, any> {
inputRef: import("react").RefObject<HTMLInputElement>;
eventCancelList: (() => void)[];
constructor(props: any);
componentDidUpdate(prevProps: any): void;
componentWillUnmount(): void;
handleBlur: (e: any) => void;
handleChange: (e: any) => void;
handleKeyDown: (e: any) => void;
handleDrag: (e: any) => void;
handleMouseDown: (e: any) => void;
handleMouseUp: () => void;
unbindEventListeners: () => void;
render(): JSX.Element;
}