UNPKG

skysync-cli

Version:

SkySync Command Line Interface

28 lines (27 loc) 587 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.outputFormatWithParent = exports.outputFormat = void 0; exports.outputFormat = { table: [ { header: 'ID', property: 'id' }, { header: 'Name', property: 'name' } ] }; exports.outputFormatWithParent = { table: [ ...exports.outputFormat.table, { header: 'Parent', property: 'parent.name' } ], json: [ 'parent.id' ] };