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

Paragraph

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

A StructuralElement representing a paragraph. A paragraph is a range of content that's terminated with a newline character.

interface Paragraph {
bullet?: Bullet;
elements?: ParagraphElement[];
paragraphStyle?: ParagraphStyle;
positionedObjectIds?: string[];
suggestedBulletChanges?: {
[key: string]: SuggestedBullet;
}
;
suggestedParagraphStyleChanges?: {
[key: string]: SuggestedParagraphStyle;
}
;
suggestedPositionedObjectIds?: {
[key: string]: ObjectReferences;
}
;
}

§Properties

§
bullet?: Bullet
[src]

The bullet for this paragraph. If not present, the paragraph does not belong to a list.

§

The content of the paragraph, broken down into its component parts.

§
paragraphStyle?: ParagraphStyle
[src]

The style of this paragraph.

§
positionedObjectIds?: string[]
[src]

The IDs of the positioned objects tethered to this paragraph.

§
suggestedBulletChanges?: {
[key: string]: SuggestedBullet;
}
[src]

The suggested changes to this paragraph's bullet.

§
suggestedParagraphStyleChanges?: {
[key: string]: SuggestedParagraphStyle;
}
[src]

The suggested paragraph style changes to this paragraph, keyed by suggestion ID.

§
suggestedPositionedObjectIds?: {
[key: string]: ObjectReferences;
}
[src]

The IDs of the positioned objects suggested to be attached to this paragraph, keyed by suggestion ID.