@amplience/dc-cli
Version:
Dynamic Content CLI Tool
34 lines (33 loc) • 720 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.streamTableOptions = exports.singleItemTableOptions = exports.baseTableConfig = void 0;
const table_1 = require("table");
exports.baseTableConfig = {
border: (0, table_1.getBorderCharacters)('ramac')
};
exports.singleItemTableOptions = {
...exports.baseTableConfig,
columns: {
1: {
width: 100
}
}
};
exports.streamTableOptions = {
...exports.baseTableConfig,
columnDefault: {
width: 50
},
columnCount: 3,
columns: {
0: {
width: 24
},
1: {
width: 100
},
2: {
width: 10
}
}
};