mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-13 13:03:04 +00:00
add missing imports of Angular lifecycle interfaces
(cherry picked from commit 2d9ad8e5cf
)
This commit is contained in:

committed by
github-actions[bot]
![github-actions[bot]](/assets/img/avatar_default.png)
parent
8075734744
commit
93d10aaf2f
@@ -1,5 +1,8 @@
|
||||
/* eslint-disable max-classes-per-file */
|
||||
import { Injectable } from '@angular/core';
|
||||
import {
|
||||
Injectable,
|
||||
OnDestroy,
|
||||
} from '@angular/core';
|
||||
import { Observable } from 'rxjs';
|
||||
|
||||
import { Duplicate } from '../../shared/object-list/duplicate-data/duplicate.model';
|
||||
@@ -33,7 +36,8 @@ import { HALEndpointService } from '../shared/hal-endpoint.service';
|
||||
*
|
||||
*/
|
||||
@Injectable({ providedIn: 'root' })
|
||||
export class SubmissionDuplicateDataService extends BaseDataService<Duplicate> implements SearchData<Duplicate> {
|
||||
export class SubmissionDuplicateDataService extends BaseDataService<Duplicate>
|
||||
implements SearchData<Duplicate>, OnDestroy {
|
||||
|
||||
/**
|
||||
* The ResponseParsingService constructor name
|
||||
|
Reference in New Issue
Block a user