UNPKG

516 BTypeScriptView Raw
1import { Factory } from '../build/Factory';
2/**
3 * Creates [[ICounters]] components by their descriptors.
4 *
5 * @see [[Factory]]
6 * @see [[NullCounters]]
7 * @see [[LogCounters]]
8 * @see [[CompositeCounters]]
9 */
10export declare class DefaultCountersFactory extends Factory {
11 private static readonly NullCountersDescriptor;
12 private static readonly LogCountersDescriptor;
13 private static readonly CompositeCountersDescriptor;
14 /**
15 * Create a new instance of the factory.
16 */
17 constructor();
18}