frontend/types/config.d.ts

7 lines
113 B
TypeScript

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