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.

9 lines 768 B
export type { ConfigChangeEvent, EnvironmentConfigOptions, } from './EnvironmentConfig'; export { EnvironmentConfig } from './EnvironmentConfig'; export { type AWSEnvironment, AWSEnvironmentSchema } from './schemas/aws'; export { type BaseEnvironment, BaseEnvironmentSchema } from './schemas/base'; export { createCustomSchema, createEnvironmentConfig, mergeSchemas, } from './schemas/custom'; export { type SecurityEnvironment, SecurityEnvironmentSchema, } from './schemas/security'; export { generateAllTemplates, generateEnvTemplate, generateJsonSchema, generateTypes, type TemplateOptions, type TemplateResult, } from './templates'; export type { CustomEnvironment, EnvironmentValidationError, FullEnvironment, } from './types'; //# sourceMappingURL=index.d.ts.map