Files
blundercrunch/packages/env/index.mts
Aditya Gupta aabb8986aa Initial commit
2026-06-29 19:29:19 +05:30

10 lines
209 B
TypeScript

import { baseEnv, dynamicEnvValues } from './lib/index.js';
import type { EnvType } from './lib/types.js';
export * from './lib/index.js';
export default {
...baseEnv,
...dynamicEnvValues,
} as EnvType;