Type alias WithBoolean

WithBoolean: {
    caseSensitive?: true;
    falsityNames?: ReadonlyArray<string>;
    truthNames?: ReadonlyArray<string>;
}

Defines additional attributes for the boolean option.

Type declaration

  • Optional Readonly caseSensitive?: true

    True if the truth and falsity names are case-sensitive.

  • Optional Readonly falsityNames?: ReadonlyArray<string>

    The names of the falsity value.

  • Optional Readonly truthNames?: ReadonlyArray<string>

    The names of the truth value.