mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-07 10:04:11 +00:00
12 lines
255 B
TypeScript
12 lines
255 B
TypeScript
import { Config } from './config.interface';
|
|
|
|
export interface BundleConfig extends Config {
|
|
|
|
/**
|
|
* List of standard bundles to select in adding bitstreams to items
|
|
* Used by {@link UploadBitstreamComponent}.
|
|
*/
|
|
standardBundles: string[];
|
|
|
|
}
|