recursive merge of config

This commit is contained in:
William Welling
2017-09-26 19:13:32 -05:00
parent 35580b7c48
commit 26e2da93fb
7 changed files with 74 additions and 13 deletions

View File

@@ -1,4 +1,6 @@
export interface CacheConfig {
import { Config } from './config.interface';
export interface CacheConfig extends Config {
msToLive: number,
control: string
}