mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-16 14:33:03 +00:00
8 lines
143 B
TypeScript
8 lines
143 B
TypeScript
import { of as observableOf } from 'rxjs';
|
|
|
|
export class FileServiceStub {
|
|
retrieveFileDownloadLink() {
|
|
return observableOf(null);
|
|
}
|
|
}
|