mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-18 07:23:03 +00:00
9 lines
161 B
TypeScript
9 lines
161 B
TypeScript
/**
|
|
* This enumeration represents all possible ways of representing a group of objects in the UI
|
|
*/
|
|
|
|
export enum ViewMode {
|
|
List = 'list',
|
|
Grid = 'grid'
|
|
}
|