refactor(suite): Refactor docs

This commit is contained in:
Jan Václavík
2026-02-12 11:06:50 +01:00
parent 3d8db8109c
commit a817589762
12 changed files with 65 additions and 55 deletions

View File

@@ -85,7 +85,7 @@ export const promoDashboardBannerEvent: EventDef<Attributes, EventType.PromoDash
changelog: [{ version: '25.8.0', notes: 'added' }],
},
bannerType: {
limitations: 'only selected strings allowed (e.g. `tex` and `ts7`)',
description: 'only selected strings allowed (e.g. `tex` and `ts7`)',
changelog: [{ version: '25.8.0', notes: 'added' }],
},
},

View File

@@ -2,7 +2,6 @@ export type AppVersion = `${number}.${number}.${number}` | '?';
export type BaseData = {
changelog: Array<{ version: AppVersion; notes: string }>;
limitations?: string;
description?: string;
};