Files
Personal-Portfolio-Website/src/global.types.ts
T

20 lines
352 B
TypeScript

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