mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-07 10:04:11 +00:00
12 lines
324 B
TypeScript
12 lines
324 B
TypeScript
import { Config } from '../../config/config.interface';
|
|
|
|
/**
|
|
* Configuration interface used by the AccessibilitySettingsService
|
|
*/
|
|
export class AccessibilitySettingsConfig implements Config {
|
|
/**
|
|
* The duration in days after which the accessibility settings cookie expires
|
|
*/
|
|
cookieExpirationDuration: number;
|
|
}
|