mapcomplete/Models/ThemeConfig/Json/ExtraLinkConfigJson.ts

8 lines
226 B
TypeScript
Raw Normal View History

export default interface ExtraLinkConfigJson {
2022-09-08 21:40:48 +02:00
icon?: string
text?: string | any
href: string
newTab?: false | boolean
requirements?: ("iframe" | "no-iframe" | "welcome-message" | "no-welcome-message")[]
2022-09-08 21:40:48 +02:00
}