mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-09 19:13:08 +00:00
10 lines
240 B
TypeScript
10 lines
240 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;
|
|
}
|