UNPKG

429 BTypeScriptView Raw
1import { Factory } from '../build/Factory';
2/**
3 * Creates [[ILock]] components by their descriptors.
4 *
5 * @see [[Factory]]
6 * @see [[ILock]]
7 * @see [[MemoryLock]]
8 * @see [[NullLock]]
9 */
10export declare class DefaultLockFactory extends Factory {
11 private static readonly NullLockDescriptor;
12 private static readonly MemoryLockDescriptor;
13 /**
14 * Create a new instance of the factory.
15 */
16 constructor();
17}