UNPKG

416 BTypeScriptView Raw
1import { Factory } from '../build/Factory';
2/**
3 * Creates [[ICredentialStore]] components by their descriptors.
4 *
5 * @see [[IFactory]]
6 * @see [[ICredentialStore]]
7 * @see [[MemoryCredentialStore]]
8 */
9export declare class DefaultCredentialStoreFactory extends Factory {
10 private static readonly MemoryCredentialStoreDescriptor;
11 /**
12 * Create a new instance of the factory.
13 */
14 constructor();
15}