mirror of
https://github.com/daydreamer-json/ak-endfield-api-archive.git
synced 2026-02-04 06:15:04 +01:00
47 lines
939 B
TypeScript
47 lines
939 B
TypeScript
const cliTableConfig = {
|
|
rounded: {
|
|
chars: {
|
|
top: '─',
|
|
'top-mid': '',
|
|
'top-left': '╭',
|
|
'top-right': '╮',
|
|
bottom: '─',
|
|
'bottom-mid': '',
|
|
'bottom-left': '╰',
|
|
'bottom-right': '╯',
|
|
left: '│',
|
|
'left-mid': '├',
|
|
mid: '─',
|
|
'mid-mid': '',
|
|
right: '│',
|
|
'right-mid': '┤',
|
|
middle: '',
|
|
},
|
|
style: { 'padding-left': 1, 'padding-right': 1, head: [''], border: [''], compact: true },
|
|
},
|
|
noBorder: {
|
|
chars: {
|
|
top: '',
|
|
'top-mid': '',
|
|
'top-left': '',
|
|
'top-right': '',
|
|
bottom: '',
|
|
'bottom-mid': '',
|
|
'bottom-left': '',
|
|
'bottom-right': '',
|
|
left: '',
|
|
'left-mid': '',
|
|
mid: '',
|
|
'mid-mid': '',
|
|
right: '',
|
|
'right-mid': '',
|
|
middle: ' ',
|
|
},
|
|
style: { 'padding-left': 0, 'padding-right': 0 },
|
|
},
|
|
};
|
|
|
|
export default {
|
|
cliTableConfig,
|
|
};
|