dumi-theme-antd-style
Version:
dumi-theme-antd-style 是为 dumi2 打造的一款文档站主题包,提供了更加美观、易用的研发与阅读体验
6 lines (5 loc) • 315 B
TypeScript
/// <reference types="react" />
import type { HighlighterProps } from './index';
type SyntaxHighlighterProps = Pick<HighlighterProps, 'language' | 'type' | 'children' | 'syntaxThemes'>;
declare const SyntaxHighlighter: import("react").NamedExoticComponent<SyntaxHighlighterProps>;
export default SyntaxHighlighter;