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