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

This interface can be augmented to register custom node types:

declare module 'mdast' {
interface DefinitionContentMap {
custom: Custom;
}
}

For a union of all definition content, see RootContent.

interface DefinitionContentMap {
    definition: Definition;
    footnoteDefinition: FootnoteDefinition;
}

Properties

definition: Definition
footnoteDefinition: FootnoteDefinition