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

Tag

import type { Tag } from "https://raw.githubusercontent.com/olaven/serialize-xml/v0.3.2/mod.ts";

Represents an XML tag.

interface Tag {
attributes: [string, string][];
children: Tag[] | string;
name: string;
}

§Properties

§
attributes: [string, string][]
[src]
§
children: Tag[] | string
[src]
§
name: string
[src]