UNPKG

@logicflow/dumi-theme-simple

Version:
20 lines (19 loc) 365 B
import React from 'react'; export type CodeHeaderProps = { /** * 代码的标题 */ title: string; /** * 代码的路径 */ relativePath: string; /** * GitHub 的地址,用于拼接最后 GitHub 编辑地址 */ githubUrl: string; }; /** * 组件的 header */ export declare const CodeHeader: React.FC<any>;