tsargp
    Preparing search index...

    Type Alias ConnectiveWords

    The connective words used in option requirements and other places. Line breaks are not supported.

    type ConnectiveWords = {
        and: string;
        arrayClose: string;
        arrayOpen: string;
        arraySep: string;
        equals: string;
        exprClose: string;
        exprOpen: string;
        no: string;
        not: string;
        notEquals: string;
        objectClose: string;
        objectOpen: string;
        objectSep: string;
        optionalClose: string;
        optionalOpen: string;
        optionAlt: string;
        optionSep: string;
        or: string;
        stringQuote: string;
        valueClose: string;
        valueOpen: string;
        valueSep: string;
    }
    Index

    Properties

    and: string

    The word used to connect two logical expressions in conjunction.

    arrayClose: string

    The bracket character used to close an array value.

    arrayOpen: string

    The bracket character used to open an array value.

    arraySep: string

    The word used to connect two array elements in succession.

    equals: string

    The word used to connect two expressions in equality comparison.

    exprClose: string

    The bracket character used to close an expression.

    exprOpen: string

    The bracket character used to open an expression.

    no: string

    The word used to connect a logical expression in non-existence.

    not: string

    The word used to connect a logical expression in negation.

    notEquals: string

    The word used to connect two expressions in non-equality comparison.

    objectClose: string

    The bracket character used to close an object value.

    objectOpen: string

    The bracket character used to open an object value.

    objectSep: string

    The word used to connect two object entries in succession.

    optionalClose: string

    The bracket character used to close an optional group.

    optionalOpen: string

    The bracket character used to open an optional group.

    optionAlt: string

    The word used to connect two option names in alternation.

    optionSep: string

    The word used to connect two option names in succession.

    or: string

    The word used to connect two logical expressions in disjunction.

    stringQuote: string

    The quote character used to enclose a string value.

    valueClose: string

    The bracket character used to close an unknown value.

    valueOpen: string

    The bracket character used to open an unknown value.

    valueSep: string

    The word used to connect an object key with its value.