/** * Copyright © 2024 Nevis Security AG. All rights reserved. */ import { PasswordPolicy } from './PasswordPolicy'; /** * An object defining the {@link PasswordPolicy}. * * @group User Interaction * @category Password */ export abstract class PasswordPolicyProvider { /** * the object defining the constraints of the password (minimum length, required special characters, etc.). */ passwordPolicy: PasswordPolicy = PasswordPolicy.create(); }