Interface HeadingRendererProps

interface HeadingRendererProps {
    children: ReactNode;
    depth: 1 | 2 | 3 | 4 | 5 | 6;
    raw: string;
    text: string;
    tokens: Token[];
    type: "heading";
}

Hierarchy (view full)

Properties

children: ReactNode
depth: 1 | 2 | 3 | 4 | 5 | 6
raw: string
text: string
tokens: Token[]
type: "heading"