10 lines
209 B
TypeScript
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;
|