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