@creditkarma/dynamic-config
Version:
Dynamic Config for Node.js backed by Consul and Vault
12 lines (11 loc) • 617 B
TypeScript
import { DynamicConfig } from './DynamicConfig';
import { IConfigOptions } from './types';
export * from './ConfigLoader';
export { DynamicConfig } from './DynamicConfig';
export * from './constants';
export * from './resolvers';
export * from './loaders';
export * from './translators';
export { loadSettings } from './SettingsLoader';
export { IConfigOptions, IConfigStore, IDynamicConfig, ISchemaMap, IConfigTranslator, IRemoteOptions, IFileLoader, IRemoteResolver, ResolverType, RemoteInitializer, IVariable, } from './types';
export declare const config: (options?: IConfigOptions | undefined) => DynamicConfig;