mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-18 07:23:03 +00:00
11 lines
244 B
TypeScript
11 lines
244 B
TypeScript
import { Config } from './config.interface';
|
|
import { AutoSyncConfig } from './auto-sync-config.interface';
|
|
|
|
export interface CacheConfig extends Config {
|
|
msToLive: {
|
|
default: number;
|
|
};
|
|
control: string;
|
|
autoSync: AutoSyncConfig;
|
|
}
|