16 lines
351 B
TypeScript
16 lines
351 B
TypeScript
|
|
/**
|
||
|
|
* Configuration management for Elasticsearch client
|
||
|
|
*
|
||
|
|
* This module provides:
|
||
|
|
* - Fluent configuration builder
|
||
|
|
* - Environment variable support
|
||
|
|
* - File-based configuration
|
||
|
|
* - Secret provider integration
|
||
|
|
* - Configuration validation
|
||
|
|
*
|
||
|
|
* @packageDocumentation
|
||
|
|
*/
|
||
|
|
|
||
|
|
export * from './types.js';
|
||
|
|
export * from './configuration-builder.js';
|