62741: AoT build fix

This commit is contained in:
Kristof De Langhe
2019-06-07 17:46:45 +02:00
parent cee7ffeb04
commit bd8177c17d

View File

@@ -1,10 +1,12 @@
import { Component, Input } from '@angular/core';
import { ListableObject } from '../../object-collection/shared/listable-object.model';
import { SearchResult } from '../../../+search-page/search-result.model';
import { DSpaceObject } from '../../../core/shared/dspace-object.model';
@Component({
selector: 'ds-item-type-badge',
templateUrl: './item-type-badge.component.html'
})
export class ItemTypeBadgeComponent {
@Input() object: ListableObject;
@Input() object: SearchResult<DSpaceObject>;
}