UNPKG

pip-services3-components-nodex

Version:
21 lines (20 loc) 567 B
/** @module cache */ import { Descriptor } from 'pip-services3-commons-nodex'; import { Factory } from '../build/Factory'; /** * Creates [[ICache]] components by their descriptors. * * @see [[Factory]] * @see [[ICache]] * @see [[MemoryCache]] * @see [[NullCache]] */ export declare class DefaultCacheFactory extends Factory { static readonly Descriptor: Descriptor; static readonly NullCacheDescriptor: Descriptor; static readonly MemoryCacheDescriptor: Descriptor; /** * Create a new instance of the factory. */ constructor(); }