mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-18 07:23:03 +00:00
19 lines
592 B
TypeScript
19 lines
592 B
TypeScript
import { Config } from './config.interface';
|
|
|
|
export interface ItemConfig extends Config {
|
|
edit: {
|
|
undoTimeout: number;
|
|
};
|
|
// This is used to show the access status label of items in results lists
|
|
showAccessStatuses: boolean;
|
|
|
|
bitstream: {
|
|
// Number of entries in the bitstream list in the item view page.
|
|
// Rounded to the nearest size in the list of selectable sizes on the
|
|
// settings menu. See pageSizeOptions in 'pagination-component-options.model.ts'.
|
|
pageSize: number;
|
|
// Show the bitstream access status label
|
|
showAccessStatuses: boolean;
|
|
}
|
|
}
|