forked from hazza/dspace-angular
16 lines
313 B
TypeScript
16 lines
313 B
TypeScript
import { Config } from './config.interface';
|
|
|
|
/**
|
|
* Community Page Config
|
|
*/
|
|
export interface CommunityPageConfig extends Config {
|
|
searchSection: CommunitySearchSectionConfig;
|
|
}
|
|
|
|
/**
|
|
* Config related to the community's search tab
|
|
*/
|
|
export interface CommunitySearchSectionConfig {
|
|
showSidebar: boolean;
|
|
}
|