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

InlineObjectElement

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

A ParagraphElement that contains an InlineObject.

interface InlineObjectElement {
inlineObjectId?: string;
suggestedDeletionIds?: string[];
suggestedInsertionIds?: string[];
suggestedTextStyleChanges?: {
[key: string]: SuggestedTextStyle;
}
;
textStyle?: TextStyle;
}

§Properties

§
inlineObjectId?: string
[src]

The ID of the InlineObject this element contains.

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

§
suggestedTextStyleChanges?: {
[key: string]: SuggestedTextStyle;
}
[src]

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

§
textStyle?: TextStyle
[src]

The text style of this InlineObjectElement. Similar to text content, like text runs and footnote references, the text style of an inline object element can affect content layout as well as the styling of text inserted next to it.