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: 'Requested Parallel Writes', property: 'parallel_writes.requested', }, { header: 'Maximum Parallel Writes', property: 'parallel_writes.max', } ], json: [ 'parallel_writes.requested', 'parallel_writes.max' ] }; const writeConfiguration = (config, output) => { output.writeItem(config, outputFormat); }; exports.writeConfiguration = writeConfiguration;