@oneblink/sdk-core
    Preparing search index...

    Type Alias CharacterLengthElement

    type CharacterLengthElement = {
        maxLength?: number;
        minLength?: number;
    }
    Index

    Properties

    maxLength?: number

    Prevent the user from entering more than this number of characters.

    Must be more than the minLength if minLength is set to a number.

    minLength?: number

    Prevent the user from entering less than this number of characters.

    Must be less than the maxLength if maxLength is set to a number.