src/app/core/models/documentation.ts
The structure to define how each documentation panel should look like in the info dialog
content: string
string
Content inside the panel
title: string
Title of the panel
export interface DocumentationContent { /** Title of the panel */ title: string; /** Content inside the panel */ content: string; }