Skip to content

Commit

Permalink
fix typing
Browse files Browse the repository at this point in the history
  • Loading branch information
slorber committed Dec 26, 2024
1 parent b694769 commit 925b997
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions packages/docusaurus-theme-common/src/utils/useThemeConfig.ts
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,12 @@ export type FooterLinkItem = {
prependBaseUrlToHref?: string;
} & {[key: string]: unknown};

export type FooterColumnItem = {
title: string | null;
className?: string;
items: FooterLinkItem[];
};

export type FooterLogo = BaseLogo;

export type FooterBase = {
Expand All @@ -82,12 +88,6 @@ export type FooterBase = {
copyright?: string;
};

export type FooterColumnItem = {
title: string | null;
className?: string;
items: FooterLinkItem[];
};

export type MultiColumnFooter = FooterBase & {
links: FooterColumnItem[];
};
Expand Down

0 comments on commit 925b997

Please sign in to comment.