Merge pull request #5970 from brookshi/patch-3

#5969 Input component support spellCheck for TypeScript
This commit is contained in:
偏右 2017-05-01 00:30:16 +08:00 committed by GitHub
commit 18abd43d20

View File

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