27 lines
398 B
TypeScript
27 lines
398 B
TypeScript
export interface Footer {
|
|
data: {
|
|
contact: Contact
|
|
docs: FooterDoc[]
|
|
}
|
|
id: number
|
|
name: string
|
|
}
|
|
|
|
export interface Contact {
|
|
header: string
|
|
ownerAddress: string
|
|
ownerMail: string
|
|
}
|
|
|
|
export interface FooterDoc {
|
|
footer_section: string
|
|
translation: string
|
|
data: FooterPdf[]
|
|
}
|
|
|
|
export interface FooterPdf {
|
|
name: string
|
|
translation: string
|
|
guest_avaliable: boolean
|
|
}
|