UNPKG

@dineug/erd-editor

Version:

Entity-Relationship Diagram Editor

11 lines (10 loc) 353 B
import { FC } from '@dineug/r-html'; import { ShikiService } from '../../../services/shikiService'; export type CodeBlockProps = { value: string; lang: Parameters<ShikiService['codeToHtml']>[1]['lang']; theme?: 'dark' | 'light'; onCopy?: (value: string) => void; }; declare const CodeBlock: FC<CodeBlockProps>; export default CodeBlock;