|
|
@@ -1,4 +1,4 @@
|
|
|
-import { ActionMenuItemType } from "~/types/enum/layout";
|
|
|
+import { ActionMenuItemType } from '~/types/enum/layout'
|
|
|
import { COOKIE_CONSENT_CHOICE } from '~/types/enum/enums'
|
|
|
|
|
|
interface ActionMenuItem {
|
|
|
@@ -6,7 +6,7 @@ interface ActionMenuItem {
|
|
|
color: 'primary' | 'secondary'
|
|
|
icon: string
|
|
|
text: string
|
|
|
- url?: string | object,
|
|
|
+ url?: string | object
|
|
|
target?: string
|
|
|
}
|
|
|
|
|
|
@@ -44,19 +44,19 @@ interface SolutionItem {
|
|
|
}
|
|
|
|
|
|
interface Review {
|
|
|
- name: string,
|
|
|
- review: string,
|
|
|
- status: string,
|
|
|
- structure: string,
|
|
|
+ name: string
|
|
|
+ review: string
|
|
|
+ status: string
|
|
|
+ structure: string
|
|
|
}
|
|
|
|
|
|
interface MenuScroll {
|
|
|
- label: string,
|
|
|
+ label: string
|
|
|
anchor: string
|
|
|
}
|
|
|
|
|
|
interface FeaturePicto {
|
|
|
- src: string,
|
|
|
+ src: string
|
|
|
text: string
|
|
|
}
|
|
|
|
|
|
@@ -167,11 +167,11 @@ interface ContactFormData {
|
|
|
}
|
|
|
|
|
|
interface CookiesPreferences {
|
|
|
- consent: COOKIE_CONSENT_CHOICE,
|
|
|
- analyticsConsent: boolean,
|
|
|
- advertisingConsent: boolean,
|
|
|
- adUserDataConsent: boolean,
|
|
|
- adPersonalizationConsent: boolean,
|
|
|
+ consent: COOKIE_CONSENT_CHOICE
|
|
|
+ analyticsConsent: boolean
|
|
|
+ advertisingConsent: boolean
|
|
|
+ adUserDataConsent: boolean
|
|
|
+ adPersonalizationConsent: boolean
|
|
|
}
|
|
|
|
|
|
interface Article {
|
|
|
@@ -181,4 +181,4 @@ interface Article {
|
|
|
imageAlt: string
|
|
|
btnTitle?: string
|
|
|
btnHref?: string
|
|
|
-}
|
|
|
+}
|