frontend/types/config.d.ts
2025-05-18 19:12:34 -04:00

6 lines
92 B
TypeScript

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