pip-services3-components-node
Version:
Component definitions for Pip.Services in Node.js
18 lines (17 loc) • 436 B
TypeScript
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 {
private static readonly NullCacheDescriptor;
private static readonly MemoryCacheDescriptor;
/**
* Create a new instance of the factory.
*/
constructor();
}