mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-07 01:54:15 +00:00
21 lines
1.0 KiB
TypeScript
21 lines
1.0 KiB
TypeScript
import { Component } from '@angular/core';
|
|
|
|
|
|
import { SearchResultListElementComponent } from '../search-result-list-element.component';
|
|
import { Community } from '../../../../core/shared/community.model';
|
|
import { CommunitySearchResult } from '../../../object-collection/shared/community-search-result.model';
|
|
import { ViewMode } from '../../../../core/shared/view-mode.model';
|
|
import { listableObjectComponent } from '../../../object-collection/shared/listable-object/listable-object.decorator';
|
|
import { BrowseEntry } from '../../../../core/shared/browse-entry.model';
|
|
|
|
@Component({
|
|
selector: 'ds-community-search-result-list-element',
|
|
styleUrls: ['../search-result-list-element.component.scss', 'community-search-result-list-element.component.scss'],
|
|
templateUrl: 'community-search-result-list-element.component.html'
|
|
})
|
|
|
|
@listableObjectComponent(CommunitySearchResult.name, ViewMode.ListElement)
|
|
export class CommunitySearchResultListElementComponent extends SearchResultListElementComponent<CommunitySearchResult, Community> {
|
|
|
|
}
|