/** @module build */ import { IFactory } from 'pip-services3-components-node'; import { CompositeFactory } from 'pip-services3-components-node'; import { Descriptor } from 'pip-services3-commons-node'; /** * Creates default container components (loggers, counters, caches, locks, etc.) by their descriptors. * * @see [[https://pip-services3-node.github.io/pip-services3-components-node/classes/build.factory.html Factory]] (in the PipServices "Components" package) * @see [[https://pip-services3-node.github.io/pip-services3-components-node/classes/info.defaultinfofactory.html DefaultInfoFactory]] (in the PipServices "Components" package) * @see [[https://pip-services3-node.github.io/pip-services3-components-node/classes/log.defaultloggerfactory.html DefaultLoggerFactory]] (in the PipServices "Components" package) * @see [[https://pip-services3-node.github.io/pip-services3-components-node/classes/count.defaultcountersfactory.html DefaultCountersFactory]] (in the PipServices "Components" package) * @see [[https://pip-services3-node.github.io/pip-services3-components-node/classes/config.defaultconfigreaderfactory.html DefaultConfigReaderFactory]] (in the PipServices "Components" package) * @see [[https://pip-services3-node.github.io/pip-services3-components-node/classes/cache.defaultcachefactory.html DefaultCacheFactory]] (in the PipServices "Components" package) * @see [[https://pip-services3-node.github.io/pip-services3-components-node/classes/auth.defaultcredentialstorefactory.html DefaultCredentialStoreFactory]] (in the PipServices "Components" package) * @see [[https://pip-services3-node.github.io/pip-services3-components-node/classes/connect.defaultdiscoveryfactory.html DefaultDiscoveryFactory]] (in the PipServices "Components" package) * @see [[https://pip-services3-node.github.io/pip-services3-components-node/classes/test.defaulttestfactory.html DefaultTestFactory]] (in the PipServices "Components" package) */ export declare class DefaultContainerFactory extends CompositeFactory { static readonly Descriptor: Descriptor; /** * Create a new instance of the factory and sets nested factories. * * @param factories a list of nested factories */ constructor(...factories: IFactory[]); }