dumi-theme-antd-style
Version:
dumi-theme-antd-style 是为 dumi2 打造的一款文档站主题包,提供了更加美观、易用的研发与阅读体验
16 lines (15 loc) • 402 B
TypeScript
/// <reference types="react" />
export interface PrismSyntaxTheme {
dark: {
[key: string]: React.CSSProperties;
};
light: {
[key: string]: React.CSSProperties;
};
}
export interface HighlighterProps {
children: string;
language: string;
theme?: Partial<PrismSyntaxTheme>;
}
export declare const Prism: import("react").NamedExoticComponent<HighlighterProps>;