This commit is contained in:
Benjamin Toby
2025-07-16 07:42:55 +01:00
parent a6b5d27f2f
commit 56324e4c99
3 changed files with 186 additions and 0 deletions
+6
View File
@@ -0,0 +1,6 @@
export type DocsLinkType = {
title: string;
href: string;
strict?: boolean;
children?: DocsLinkType[];
};