datasquirel-docs/types.ts

7 lines
122 B
TypeScript
Raw Normal View History

2025-07-16 06:42:55 +00:00
export type DocsLinkType = {
title: string;
href: string;
strict?: boolean;
children?: DocsLinkType[];
};