clean branch-scoped code quality issues

This commit is contained in:
Tom Boullay
2026-04-28 14:23:37 +02:00
parent 356bb5ef88
commit 324aa9dc0f
15 changed files with 218 additions and 242 deletions
+2 -2
View File
@@ -1,11 +1,11 @@
export interface DocSection {
interface DocSection {
path: string;
title: string;
subtitle: string;
meta: string;
}
export interface DocGroup {
interface DocGroup {
label: string;
sections: DocSection[];
}