@docusaurus/types
Advanced tools
Comparing version 2.0.0-alpha.b20d016bc to 2.0.0-alpha.b5c46bd1d
{ | ||
"name": "@docusaurus/types", | ||
"version": "2.0.0-alpha.b20d016bc", | ||
"version": "2.0.0-alpha.b5c46bd1d", | ||
"description": "Common used typings for Docusaurus packages", | ||
@@ -22,3 +22,3 @@ "main": "./src/index.js", | ||
}, | ||
"gitHead": "14f3db0983873aace96abef506f523c9bd7dc75e" | ||
"gitHead": "0a37b53f730521c987f73ce57f43e2cf5fb510b6" | ||
} |
@@ -95,5 +95,10 @@ /** | ||
export type I18nLocaleConfig = { | ||
label: string; | ||
}; | ||
export type I18nConfig = { | ||
defaultLocale: string; | ||
locales: [string, ...string[]]; | ||
localeConfigs: Record<string, I18nLocaleConfig>; | ||
}; | ||
@@ -348,6 +353,6 @@ | ||
export interface MarkdownRightTableOfContents { | ||
export interface TOCItem { | ||
readonly value: string; | ||
readonly id: string; | ||
readonly children: MarkdownRightTableOfContents[]; | ||
readonly children: TOCItem[]; | ||
} |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
10786
322