@metreeca/blue - v0.9.1
    Preparing search index...

    Interface LocalizedConstraints

    Base constraint properties for language-tagged shapes.

    interface LocalizedConstraints {
        minLength?: number;
        maxLength?: number;
        languageIn?: readonly string[];
    }

    Hierarchy (View Summary)

    Index

    Properties

    minLength?: number

    Minimum string length in characters.

    undefined (no minimum length)

    maxLength?: number

    Maximum string length in characters.

    undefined (no maximum length)

    languageIn?: readonly string[]

    Allowed language ranges for language-tagged strings.

    When specified, language tags must match one of the given BCP47 language ranges.

    undefined (no language constraint)