46 lines
696 B
TypeScript
46 lines
696 B
TypeScript
declare module '*.glb' {
|
|
const src: string
|
|
export default src
|
|
}
|
|
|
|
type ApiKpType = {
|
|
id: number
|
|
title: string
|
|
content: string
|
|
url: string
|
|
meta_title: any
|
|
meta_description: string
|
|
keywords: any
|
|
is_indexed: boolean
|
|
}
|
|
|
|
type ApiPagesType = {
|
|
id: number
|
|
title: string
|
|
menu_title: string
|
|
slug: string
|
|
external_link: string
|
|
content: string
|
|
image: string
|
|
}
|
|
|
|
type ApiReviewsType = {
|
|
id: number
|
|
image: string
|
|
text: string
|
|
comment: string
|
|
}
|
|
|
|
type ApiFooterType = {
|
|
id: number
|
|
text: string
|
|
small_text: boolean
|
|
}
|
|
|
|
type ApiSocial_networkType = {
|
|
id: number
|
|
name: string
|
|
link: string
|
|
image: string
|
|
}
|