markmv - v1.26.2
    Preparing search index...

    Interface LinkNode

    interface LinkNode {
        type: "image" | "link" | "linkReference" | "imageReference";
        url?: string;
        title?: null | string;
        alt?: null | string;
        identifier?: string;
        referenceType?: "full" | "collapsed" | "shortcut";
        children?: { type: string; value?: string }[];
    }

    Hierarchy

    • Node
      • LinkNode
    Index

    Properties

    type: "image" | "link" | "linkReference" | "imageReference"

    Node type.

    url?: string
    title?: null | string
    alt?: null | string
    identifier?: string
    referenceType?: "full" | "collapsed" | "shortcut"
    children?: { type: string; value?: string }[]