mirror of
https://github.com/facebook/docusaurus.git
synced 2025-07-23 19:48:54 +02:00
refactor: remove unnecessary default values normalized during validation (#6864)
* refactor: remove unnecessary default values normalized during validation * more
This commit is contained in:
parent
7fc134ba0e
commit
8e934450d8
27 changed files with 146 additions and 138 deletions
|
@ -56,7 +56,7 @@ export type PrismConfig = {
|
|||
theme?: PrismTheme;
|
||||
darkTheme?: PrismTheme;
|
||||
defaultLanguage?: string;
|
||||
additionalLanguages?: string[];
|
||||
additionalLanguages: string[];
|
||||
};
|
||||
|
||||
export type FooterLinkItem = {
|
||||
|
@ -71,7 +71,7 @@ export type FooterBase = {
|
|||
style: 'light' | 'dark';
|
||||
logo?: {
|
||||
alt?: string;
|
||||
src?: string;
|
||||
src: string;
|
||||
srcDark?: string;
|
||||
width?: string | number;
|
||||
height?: string | number;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue