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

LinkNode

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]