skysync-cli
Version:
SkySync Command Line Interface
30 lines (29 loc) • 639 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.outputFormat = void 0;
exports.outputFormat = {
table: [
{
header: 'License',
property: 'key'
},
{
header: 'Customer',
property: 'customer',
transform: val => `${val.name} (${val.email})`
},
{
header: 'Expired',
property: 'expired'
}
],
json: [
'product',
'edition',
'customer',
'features',
'quota',
'used',
'trial'
]
};