9 lines
237 B
TypeScript
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');
|
|
}
|
|
}
|