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

Parent

Abstract hast node that contains other hast nodes (children).

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

For a union of all registered hast parents, see Parents.

interface Parent extends Node {
children: RootContent[];
}

§Extends

§Properties

§
children: RootContent[]
[src]

List of children.