UNPKG

@codefresh-io/yaml-validator

Version:

An NPM module/CLI for validating the Codefresh YAML

14 lines (10 loc) 216 B
'use strict'; class BaseArgument { static getName() { throw new Error('Implement this'); } static validate() { throw new Error('Implement this'); } } module.exports = BaseArgument;