UNPKG

shineout

Version:

Shein 前端组件库

13 lines (12 loc) 352 B
import { PureComponent } from 'react'; import { InputPassword } from './Props'; declare class Password extends PureComponent<InputPassword> { static defaultProps: { value: string; point: string; }; constructor(props: InputPassword); handleChange(val: string): void; render(): JSX.Element; } export default Password;