mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-17 15:03:07 +00:00
13 lines
239 B
TypeScript
13 lines
239 B
TypeScript
import { HttpHeaders } from '@angular/common/http';
|
|
|
|
export interface DSpaceRESTV2Response {
|
|
payload: {
|
|
[name: string]: any;
|
|
_embedded?: any;
|
|
_links?: any;
|
|
page?: any;
|
|
},
|
|
headers?: HttpHeaders,
|
|
statusCode: string
|
|
}
|