backend/types/config/environment.ts
creations 00a7417936
Some checks failed
Code quality checks / biome (push) Failing after 13s
move environment to src/environment add smtp env vars, move some other items
2025-06-10 15:16:31 -04:00

8 lines
122 B
TypeScript

type Environment = {
port: number;
host: string;
development: boolean;
fqdn: string;
};
export type { Environment };