UNPKG

primevue

Version:

[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT) [![npm version](https://badge.fury.io/js/primevue.svg)](https://badge.fury.io/js/primevue)

22 lines (19 loc) 458 B
interface PasswordProps { modelValue?: string; promptLabel?: string; mediumRegex?: string; strongRegex?: string; weakLabel?: string; mediumLabel?: string; strongLabel?: string; feedback?: boolean; appendTo?: string; toggleMask?: boolean; inputStyle?: any; inputClass?: string; } declare class Password { $props: PasswordProps; $emit(eventName: string, event: Event): this; } export default Password;