@mk-pass/mk-pass
    Preparing search index...

    Interface PasswordRequirements

    An object used to describe the requirements for generating a password.

    interface PasswordRequirements {
        allowRepeats?: boolean;
        decimal?: number;
        firstIsLetter?: boolean;
        length?: number;
        specials?: number;
    }
    Index

    Properties

    allowRepeats?: boolean

    Allow characters to be used more than once?

    decimal?: number

    How many numeric characters should the password contain?

    firstIsLetter?: boolean

    Should the first character always be a letter?

    length?: number

    The length of the password.

    specials?: number

    How many special characters should the password contain?