7 lines
122 B
TypeScript
7 lines
122 B
TypeScript
export type DocsLinkType = {
|
|
title: string;
|
|
href: string;
|
|
strict?: boolean;
|
|
children?: DocsLinkType[];
|
|
};
|