1
0

added missing decorator for classes that use Angular features

This commit is contained in:
Giuseppe Digilio
2020-12-04 10:16:37 +01:00
parent 09101e83f3
commit 587affd064
13 changed files with 65 additions and 30 deletions

View File

@@ -1,9 +1,12 @@
import { EventEmitter, Input, Output, Directive } from '@angular/core';
import { Component, EventEmitter, Input, Output } from '@angular/core';
/**
* Abstract class that represents value input components
*/
@Directive()
@Component({
selector: 'ds-value-input',
template: ''
})
export abstract class ValueInputComponent<T> {
@Input() index: number;
/**