fix: password ts types #1424

pull/1431/head
tanjinzhou 2019-11-15 18:25:17 +08:00
parent a857c253c9
commit 85774fb921
2 changed files with 3 additions and 3 deletions

View File

@ -6,13 +6,13 @@ import { AntdComponent } from '../component';
import { InputGroup } from './input-group'; import { InputGroup } from './input-group';
import { InputSearch } from './input-search'; import { InputSearch } from './input-search';
import { TextArea } from './textarea'; import { TextArea } from './textarea';
import { Passward } from './passward'; import { Password } from './password';
export declare class Input extends AntdComponent { export declare class Input extends AntdComponent {
static Group: typeof InputGroup; static Group: typeof InputGroup;
static Search: typeof InputSearch; static Search: typeof InputSearch;
static TextArea: typeof TextArea; static TextArea: typeof TextArea;
static Passward: typeof Passward; static Password: typeof Password;
/** /**
* The label text displayed after (on the right side of) the input field. * The label text displayed after (on the right side of) the input field.

View File

@ -4,6 +4,6 @@
import { AntdComponent } from '../component'; import { AntdComponent } from '../component';
export declare class Passward extends AntdComponent { export declare class Password extends AntdComponent {
visibilityToggle?: boolean; visibilityToggle?: boolean;
} }