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

TableOfContents

import type { TableOfContents } from "https://googleapis.deno.dev/v1/docs:v1.ts";

A StructuralElement representing a table of contents.

interface TableOfContents {
content?: StructuralElement[];
suggestedDeletionIds?: string[];
suggestedInsertionIds?: string[];
}

§Properties

§

The content of the table of contents.

§
suggestedDeletionIds?: string[]
[src]

The suggested deletion IDs. If empty, then there are no suggested deletions of this content.

§
suggestedInsertionIds?: string[]
[src]

The suggested insertion IDs. A TableOfContents may have multiple insertion IDs if it is a nested suggested change. If empty, then this is not a suggested insertion.