@eluvio/elv-utils-js
Version:
Utilities for the Eluvio Content Fabric
25 lines (20 loc) • 438 B
JavaScript
const FabricFilePathModel = require('../../models/FabricFilePathModel')
const {NewOpt} = require('../../options')
const blueprint = {
name: 'ArgFilePath',
options: [
NewOpt('filePath', {
descTemplate: 'Path of{X} file within object (start with \'/\')',
coerce: FabricFilePathModel,
type: 'string'
})
]
}
const New = () => {
// instance interface
return {}
}
module.exports = {
blueprint,
New
}