BlockContentMap

Defined in: node_modules/@types/mdast/index.d.ts:160

Registry of all mdast nodes that can occur where BlockContent is expected.

This interface can be augmented to register custom node types:

declare module 'mdast' {
  interface BlockContentMap {
    // Allow using MDX ESM nodes defined by `remark-mdx`.
    mdxjsEsm: MdxjsEsm;
  }
}

For a union of all block content, see RootContent.

Properties

blockquote

blockquote: Blockquote

Defined in: node_modules/@types/mdast/index.d.ts:161


code

code: Code

Defined in: node_modules/@types/mdast/index.d.ts:162


heading

heading: Heading

Defined in: node_modules/@types/mdast/index.d.ts:163


html

html: Html

Defined in: node_modules/@types/mdast/index.d.ts:164


list

list: List

Defined in: node_modules/@types/mdast/index.d.ts:165


paragraph

paragraph: Paragraph

Defined in: node_modules/@types/mdast/index.d.ts:166


table

table: Table

Defined in: node_modules/@types/mdast/index.d.ts:167


thematicBreak

thematicBreak: ThematicBreak

Defined in: node_modules/@types/mdast/index.d.ts:168