UNPKG

skysync-cli

Version:

SkySync Command Line Interface

24 lines (23 loc) 646 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.writeConfiguration = void 0; const outputFormat = { table: [ { header: 'Concurrent Transfers', property: 'concurrent_transfers', }, { header: 'Maximum Concurrent Transfers', property: 'max_concurrent_transfers', } ], json: [ 'concurrent_transfers', 'max_concurrent_transfers' ] }; const writeConfiguration = (config, output) => { output.writeItem(config, outputFormat); }; exports.writeConfiguration = writeConfiguration;