Border
About 1 min
Represents the border characters used in table rendering.
Example
const border: Border = {
top: '─',
topMid: '┬',
topLeft: '┌',
topRight: '┐',
bottom: '─',
bottomMid: '┴',
bottomLeft: '└',
bottomRight: '┘',
left: '│',
leftMid: '├',
mid: '─',
midMid: '┼',
right: '│',
rightMid: '┤',
middle: '│',
};
Properties
Property | Type | Description |
---|---|---|
| The character for the bottom border. | |
| The character for the bottom left corner. | |
| The character for the bottom middle border. | |
| The character for the bottom right corner. | |
| The character for the left border. | |
| The character for the left middle border. | |
| The character for the middle border. | |
| The character for the middle of the table. | |
| The character for the middle middle border. | |
| The character for the right border. | |
| The character for the right middle border. | |
| The character for the top border. | |
| The character for the top left corner. | |
| The character for the top middle border. | |
| The character for the top right corner. |