datasquirel-docs/types.ts
Benjamin Toby 56324e4c99 Updates
2025-07-16 07:42:55 +01:00

7 lines
122 B
TypeScript

export type DocsLinkType = {
title: string;
href: string;
strict?: boolean;
children?: DocsLinkType[];
};