UNPKG

com.phloxui

Version:

PhloxUI Ng2+ Framework

13 lines (12 loc) 616 B
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 Min extends AbstractValidator<any> implements OnInit { private min; constructor(el: ElementRef, target: ViewContainerRef, phloxAppService: PhloxAppInfoService); ngOnInit(): void; getMinDate(): any; setMinDateTime(min: any): void; doValidate(value: any): ValidationResult; }