@citrineos/base
Version:
The base module for OCPP v2.0.1 including all interfaces. This module is not intended to be used directly, but rather as a dependency for other modules.
10 lines (9 loc) • 529 B
TypeScript
import { type SystemConfig, SystemConfigInput } from './types';
/**
* Defines the application configuration by merging input configuration which is defined in a file with environment variables.
* Takes environment variables over predefined
* @param inputConfig The file defined input configuration.
* @returns The final system configuration.
* @throws Error if required environment variables are not set or if there are parsing errors.
*/
export declare function defineConfig(inputConfig: SystemConfigInput): SystemConfig;