1
0
Files
yel-dspace-angular/src/app/process-page/new/process-parameters/parameter-value-input/value-input.component.ts
2020-03-30 15:19:22 +02:00

12 lines
310 B
TypeScript

import { EventEmitter, Output } from '@angular/core';
/**
* Abstract class that represents value input components
*/
export abstract class ValueInputComponent<T> {
/**
* Used by the subclasses to emit the value when it's updated
*/
@Output() updateValue: EventEmitter<T> = new EventEmitter<T>()
}