com.phloxui
Version:
PhloxUI Ng2+ Framework
15 lines (14 loc) • 678 B
TypeScript
import { OnInit, ElementRef, ViewContainerRef } from '@angular/core';
import { ValidationResult } from '../component/model/ValidationResult';
import { AbstractValidator } from '../component/validate/AbstractValidator';
import { PhloxAppInfoService } from '../service/PhloxAppInfoService.service';
export declare class MaxValidator extends AbstractValidator<any> implements OnInit {
static NAME: string;
private max;
constructor(el: ElementRef, target: ViewContainerRef, phloxAppService: PhloxAppInfoService);
ngOnInit(): void;
getMaxDate(): any;
setMax(max: any): void;
doValidate(value: any): ValidationResult;
setOptions(options: any): void;
}