@eluvio/elv-utils-js
Version:
Utilities for the Eluvio Content Fabric
25 lines (20 loc) • 382 B
JavaScript
// code related to --variantKey
const {NewOpt} = require('../options')
const blueprint = {
name: 'ArgVariantKey',
options: [
NewOpt('variantKey', {
default: 'default',
descTemplate: 'Key for the production master variant{X}',
type: 'string'
})
]
}
const New = () => {
// instance interface
return {}
}
module.exports = {
blueprint,
New
}