import { PathType } from '../TypeValidation/PathType'; import { TypeValidation } from '../TypeValidation/TypeValidation'; import { StringOption } from './StringOption'; export class PathOption extends StringOption { protected get validation (): TypeValidation { return new PathType ('path'); } }