@aplus-frontend/ui
Version:
13 lines (12 loc) • 361 B
TypeScript
import { InputProps } from '@aplus-frontend/antdv';
/**
* 根据antdv类型定义创建的Input.Password Props类型定义
*/
export type InputPasswordProps = InputProps & {
prefixCls?: string;
inputPrefixCls?: string;
action?: string;
visibilityToggle?: boolean;
visible?: boolean;
'onUpdate:visible'?: (visible: boolean) => void;
};