MapComplete/Models/ThemeConfig/Json/ExtraLinkConfigJson.ts

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

7 lines
229 B
TypeScript
Raw Normal View History

export default interface ExtraLinkConfigJson {
icon?: string,
text?: string | any,
href: string,
newTab?: false | boolean,
requirements?: ("iframe" | "no-iframe" | "welcome-message" | "no-welcome-message")[]
}