feat(PageHelp): make PageHelp messages configurable

This commit is contained in:
Danny Koppenhagen
2021-10-26 20:12:45 +02:00
committed by Bastian
parent 265a8318b0
commit 1e3433274b
4 changed files with 17 additions and 7 deletions

View File

@@ -18,13 +18,16 @@ interface Paragraph {
interface PageHelp {
paragraphs: Paragraph[];
quadrantsPreDescription?: string;
quadrants: Quadrant[];
rings: Ring[];
ringsPreDescription?: string;
sourcecodeLink?: {
href: string;
name: string;
description: string;
};
headlinePrefix?: string
}
interface PageOverview {