nuxt-users
Version:
A comprehensive user management module for Nuxt 3 and Nuxt 4 applications with authentication, authorization, database support, and CLI tools
13 lines (12 loc) • 595 B
TypeScript
import type { PasswordValidationResult } from '../../utils/index.js';
interface Props {
password: string;
validationResult: PasswordValidationResult | null;
showHints?: boolean;
showRules?: boolean;
}
declare const _default: import("vue").DefineComponent<Props, void, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<Props> & Readonly<{}>, {
showHints: boolean;
showRules: boolean;
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
export default _default;