UNPKG

@easyx.ai/dumi-theme-easyxai

Version:

@easyx.ai/dumi-theme-easyxai 是为 dumi2 打造的一款文档站主题包,提供了更加美观、易用的研发与阅读体验

10 lines (9 loc) 275 B
import { type FC } from 'react'; import { FooterProps as RcProps } from 'rc-footer'; export interface FooterProps { columns: RcProps['columns']; bottom?: RcProps['bottom']; theme?: RcProps['theme']; } declare const Footer: FC<FooterProps>; export default Footer;