UNPKG

436 BTypeScriptView Raw
1import { Factory } from '../build/Factory';
2/**
3 * Creates [[ICache]] components by their descriptors.
4 *
5 * @see [[Factory]]
6 * @see [[ICache]]
7 * @see [[MemoryCache]]
8 * @see [[NullCache]]
9 */
10export declare class DefaultCacheFactory extends Factory {
11 private static readonly NullCacheDescriptor;
12 private static readonly MemoryCacheDescriptor;
13 /**
14 * Create a new instance of the factory.
15 */
16 constructor();
17}