UNPKG

544 BTypeScriptView Raw
1import { Factory } from '../build/Factory';
2/**
3 * Creates [[IConfigReader]] components by their descriptors.
4 *
5 * @see [[Factory]]
6 * @see [[MemoryConfigReader]]
7 * @see [[JsonConfigReader]]
8 * @see [[YamlConfigReader]]
9 */
10export declare class DefaultConfigReaderFactory extends Factory {
11 private static readonly MemoryConfigReaderDescriptor;
12 private static readonly JsonConfigReaderDescriptor;
13 private static readonly YamlConfigReaderDescriptor;
14 /**
15 * Create a new instance of the factory.
16 */
17 constructor();
18}