Interface BlockquoteRendererProps

interface BlockquoteRendererProps {
    children: ReactNode;
    raw: string;
    text: string;
    tokens: Token[];
    type: "blockquote";
}

Hierarchy (view full)

Properties

children: ReactNode
raw: string
text: string
tokens: Token[]
type: "blockquote"