All checks were successful
Code quality checks / biome (push) Successful in 13s
- change register email - add verify route ( mostly still needs to be tested
9 lines
152 B
TypeScript
9 lines
152 B
TypeScript
type Environment = {
|
|
port: number;
|
|
host: string;
|
|
development: boolean;
|
|
frontendFqdn: string;
|
|
backendFqdn: string;
|
|
};
|
|
|
|
export type { Environment };
|