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

SectionBreak

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

A StructuralElement representing a section break. A section is a range of content that has the same SectionStyle. A section break represents the start of a new section, and the section style applies to the section after the section break. The document body always begins with a section break.

interface SectionBreak {
sectionStyle?: SectionStyle;
suggestedDeletionIds?: string[];
suggestedInsertionIds?: string[];
}

§Properties

§
sectionStyle?: SectionStyle
[src]

The style of the section after this section break.

§
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 SectionBreak may have multiple insertion IDs if it's a nested suggested change. If empty, then this is not a suggested insertion.