Interface CodeBlockRendererProps

interface CodeBlockRendererProps {
    children: ReactNode;
    codeBlockStyle?: "indented";
    lang: string;
    raw: string;
    text: string;
    type: "code";
}

Hierarchy (view full)

  • Code
    • CodeBlockRendererProps

Properties

children: ReactNode
codeBlockStyle?: "indented"
lang: string
raw: string
text: string
type: "code"