7 lines
107 B
TypeScript
7 lines
107 B
TypeScript
type Environment = {
|
|
port: number;
|
|
host: string;
|
|
development: boolean;
|
|
};
|
|
|
|
export type { Environment };
|