LinkNode
import type { LinkNode } from "https://raw.githubusercontent.com/takker99/scrapbox-userscript-std/0.24.3/deps/scrapbox.ts";
interface LinkNode extends BaseNode {
content: string;
href: string;
pathType: "absolute" | "root" | "relative";
type: "link";
}