@docusaurus/types
Advanced tools
Comparing version 2.0.0-alpha.20114f5e0 to 2.0.0-alpha.3570aa06c
{ | ||
"name": "@docusaurus/types", | ||
"version": "2.0.0-alpha.20114f5e0", | ||
"version": "2.0.0-alpha.3570aa06c", | ||
"description": "Common used typings for Docusaurus packages", | ||
@@ -22,3 +22,3 @@ "main": "./src/index.js", | ||
}, | ||
"gitHead": "8158256723ace4bff31b107f69fb8e92bea63524" | ||
"gitHead": "d0544177d2cb3e534be5bb8b43d9958eed03386f" | ||
} |
@@ -347,6 +347,6 @@ /** | ||
export interface MarkdownRightTableOfContents { | ||
export interface TOCItem { | ||
readonly value: string; | ||
readonly id: string; | ||
readonly children: MarkdownRightTableOfContents[]; | ||
readonly children: TOCItem[]; | ||
} |
10681