Skip to content

Commit 85774fb

Browse files
committed
fix: password ts types #1424
1 parent a857c25 commit 85774fb

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

types/input/input.d.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,13 @@ import { AntdComponent } from '../component';
66
import { InputGroup } from './input-group';
77
import { InputSearch } from './input-search';
88
import { TextArea } from './textarea';
9-
import { Passward } from './passward';
9+
import { Password } from './password';
1010

1111
export declare class Input extends AntdComponent {
1212
static Group: typeof InputGroup;
1313
static Search: typeof InputSearch;
1414
static TextArea: typeof TextArea;
15-
static Passward: typeof Passward;
15+
static Password: typeof Password;
1616

1717
/**
1818
* The label text displayed after (on the right side of) the input field.

types/input/passward.d.ts renamed to types/input/password.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,6 @@
44

55
import { AntdComponent } from '../component';
66

7-
export declare class Passward extends AntdComponent {
7+
export declare class Password extends AntdComponent {
88
visibilityToggle?: boolean;
99
}

0 commit comments

Comments
 (0)