Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

LinkNode

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

§Extends

§
BaseNode
[src]

§Properties

§
content: string
[src]
§
href: string
[src]
§
pathType: "absolute" | "root" | "relative"
[src]
§
type: "link"
[src]