shineout
Version:
A components library for React
11 lines (10 loc) • 438 B
TypeScript
import { InputPasswordProps as UnStyledInputPasswordProps } from '@sheinx/base';
import { GetWithFieldProps } from '../hooks/use-field-common';
export interface BasePasswordProps extends Omit<UnStyledInputPasswordProps, 'jssStyle' | 'innerTitleJssStyle'> {
/**
* @cn 输入值
* @en Input value
*/
value?: string;
}
export type InputPasswordProps = GetWithFieldProps<BasePasswordProps, BasePasswordProps['value']>;