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

Literal

Abstract hast node that contains the smallest possible value.

This interface is supposed to be extended if you make custom hast nodes.

For a union of all registered hast literals, see Literals.

interface Literal extends Node {
value: string;
}

§Extends

§Properties

§
value: string
[src]

Plain-text value.