@docusaurus/types
Advanced tools
Comparing version 2.0.0-alpha.415a7973f to 2.0.0-alpha.41ef333e4
{ | ||
"name": "@docusaurus/types", | ||
"version": "2.0.0-alpha.415a7973f", | ||
"version": "2.0.0-alpha.41ef333e4", | ||
"description": "Common used typings for Docusaurus packages", | ||
@@ -22,3 +22,3 @@ "main": "./src/index.js", | ||
}, | ||
"gitHead": "f32e2bf310508756da24548e8c7d143a64346829" | ||
"gitHead": "8ab42ced521397663651b4e5fbedfce35e8eb7d8" | ||
} |
@@ -347,6 +347,6 @@ /** | ||
export interface MarkdownRightTableOfContents { | ||
export interface TOCItem { | ||
readonly value: string; | ||
readonly id: string; | ||
readonly children: MarkdownRightTableOfContents[]; | ||
readonly children: TOCItem[]; | ||
} |
10681