Merge pull request #6283 from clinyong/bugfix

Input add autoFocus prop (for ts checking)
This commit is contained in:
偏右 2017-05-27 16:45:37 +08:00 committed by GitHub
commit 0d5fc18db7

View File

@ -59,6 +59,7 @@ export interface InputProps {
prefix?: React.ReactNode;
suffix?: React.ReactNode;
spellCheck?: boolean;
autoFocus?: boolean;
}
export default class Input extends Component<InputProps, any> {