8 lines
122 B
TypeScript
8 lines
122 B
TypeScript
type Environment = {
|
|
port: number;
|
|
host: string;
|
|
development: boolean;
|
|
fqdn: string;
|
|
};
|
|
|
|
export type { Environment };
|