Skip to content

Commit

Permalink
fix: update theme config
Browse files Browse the repository at this point in the history
  • Loading branch information
jeangovil committed Jul 4, 2023
1 parent 9f458da commit f4f34dc
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions packages/logos-docusaurus-preset/src/types/themes.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
import { Footer, Navbar } from '@docusaurus/theme-common'
import {
ThemeConfig as DocusaurusThemeConfig,
Footer,
} from '@docusaurus/theme-common'

export type ThemeConfig = {
navbar?: Navbar
footer?: Footer
export type ThemeConfig = Omit<DocusaurusThemeConfig, 'footer'> & {
footer?: Omit<Footer, 'style'>
}

export type { ThemeOptions as DefaultThemeOptions } from '@acid-info/logos-docusaurus-theme'

0 comments on commit f4f34dc

Please sign in to comment.