backend/types/config/environment.ts
creations 421043c9b5
Some checks failed
Code quality checks / biome (push) Failing after 11s
first commit
2025-06-10 13:42:39 -04:00

7 lines
107 B
TypeScript

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