Skip to content

Commit

Permalink
feat: ✨ update AppConfig to include contact and i18n properties
Browse files Browse the repository at this point in the history
  • Loading branch information
MeesoPost committed Nov 13, 2024
1 parent cf71206 commit 568cb2a
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions src/types/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,9 @@ export type AppConfig = {
}
title: string
}
contact: {
tel: string
}
style?: {
primaryColor?: string
}
Expand All @@ -19,5 +22,23 @@ export type AppConfig = {
center: [number, number]
maxBounds: [[number, number], [number, number]]
}
i18n: {
nl: {
'describe-report': {
alert: {
help_text: string
opening_hours: string
}
}
}
en: {
'describe-report': {
alert: {
help_text: string
opening_hours: string
}
}
}
}
}
}

0 comments on commit 568cb2a

Please sign in to comment.