19 lines
335 B
TypeScript
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;
|
|
}
|