fix: update theme config

This commit is contained in:
Hossein Mehrabi
2023-07-04 21:01:01 +03:30
parent 9f458da4a2
commit f4f34dc175
@@ -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'