23 lines
422 B
TypeScript
23 lines
422 B
TypeScript
export interface FrontPageSection {
|
|
id_front_page: number
|
|
id_position: number
|
|
id_section: number
|
|
front_section: FrontSection
|
|
}
|
|
|
|
export interface FrontSection {
|
|
id: number
|
|
name: string
|
|
img: string[]
|
|
component_name: string
|
|
is_no_lang: boolean
|
|
page_name: string
|
|
front_section_lang: FrontSectionLang[]
|
|
}
|
|
|
|
export interface FrontSectionLang {
|
|
data: unknown
|
|
id_front_section: number
|
|
id_lang: number
|
|
}
|