import { Input, Component, ContentChildren, EventEmitter, Output, QueryList, SimpleChanges, HostBinding } from "@angular/core"; export abstract class ValidatorComponent { @Input() public message: any; @Input() public disabled: boolean; @HostBinding('class') classes; public isValid: boolean; constructor() { this.disabled = false; this.isValid = true; this.classes = 'sdc-validator sdc-label__error'; } public abstract validate(value: any): boolean; }