Files
console-app/lib/Options/PathOption.ts
2020-06-09 13:58:29 +02:00

9 lines
237 B
TypeScript

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