UNPKG

envolution

Version:

TypeScript-first environment configuration with Zod validation, .env support, hot reloading, and startup validation. Zero-config setup - just install and use! Perfect for Node.js, AWS Lambda, and modern TypeScript applications.

11 lines 364 B
import { EnvironmentConfig } from '../EnvironmentConfig'; export function createCustomSchema(schema) { return schema; } export function mergeSchemas(schema1, schema2) { return schema1.merge(schema2); } export function createEnvironmentConfig(schema, options) { return EnvironmentConfig.getInstance(schema, options); } //# sourceMappingURL=custom.js.map