fit-input
Version:
输入框
12 lines (10 loc) • 381 B
TypeScript
import * as React from 'react';
import * as module from './module';
export default class Input extends React.Component<module.PropsInterface, module.StateInterface> {
static defaultProps: module.PropsInterface;
state: module.StateInterface;
constructor(props: any);
componentWillMount(): void;
handleInputChange(event: any): void;
render(): JSX.Element;
}