UNPKG

angular-jsf-components

Version:
10 lines (8 loc) 263 B
export class ErrorMessage { constructor(public hasError?: boolean, private message?: string) { } setError(hasError: boolean, message?: string) { this.hasError = hasError; this.message = message || 'Error in the input field!'; } }