Type Alias ConnectiveWords

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;
    optionAlt: string;
    optionSep: string;
    or: string;
    stringQuote: string;
    valueClose: string;
    valueOpen: string;
    valueSep: string;
}

The connective words used in option requirements and other places. Inline styles and line breaks are not supported.

Type declaration

  • 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.

  • 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.