fix: password ts types #1424
parent
a857c253c9
commit
85774fb921
|
@ -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.
|
||||||
|
|
|
@ -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;
|
||||||
}
|
}
|
Loading…
Reference in New Issue