@docusaurus/types
Advanced tools
Comparing version 2.0.0-alpha.20114f5e0 to 2.0.0-alpha.2fb766ba7
{ | ||
"name": "@docusaurus/types", | ||
"version": "2.0.0-alpha.20114f5e0", | ||
"version": "2.0.0-alpha.2fb766ba7", | ||
"description": "Common used typings for Docusaurus packages", | ||
@@ -22,3 +22,3 @@ "main": "./src/index.js", | ||
}, | ||
"gitHead": "8158256723ace4bff31b107f69fb8e92bea63524" | ||
"gitHead": "8fb5a2890ba3af8bae91bdcfcebb010c4d66183a" | ||
} |
@@ -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