Files
Personal-Portfolio-Website/src/global.types.ts
T
2026-04-28 13:52:38 +02:00

19 lines
335 B
TypeScript

export interface ImprintData {
street: string;
houseNumber: number;
zip: number;
city: string;
country: string;
}
export interface Global {
firstname: string;
lastname: string;
contactMail: string;
abuseMail: string;
contactPhone: string;
hrefContactPhone: string;
birthdate: string;
address: ImprintData;
}