RGex Builder Platform - v1.2.0
    Preparing search index...

    Interface PasswordValidationOptions

    interface PasswordValidationOptions {
        minLength?: number;
        maxLength?: number;
        hasNumber?: boolean;
        hasSpecial?: boolean;
        hasUpperChar?: boolean;
        hasLowerChar?: boolean;
        hasSymbol?: boolean;
        hasUnicode?: boolean;
        noSequential?: boolean;
        noRepeating?: boolean;
        noCommonWords?: boolean;
        customPattern?: string;
    }
    Index

    Properties

    minLength?: number
    maxLength?: number
    hasNumber?: boolean
    hasSpecial?: boolean
    hasUpperChar?: boolean
    hasLowerChar?: boolean
    hasSymbol?: boolean
    hasUnicode?: boolean
    noSequential?: boolean
    noRepeating?: boolean
    noCommonWords?: boolean
    customPattern?: string