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

DateElement

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

A date instance mentioned in a document.

interface DateElement {
dateElementProperties?: DateElementProperties;
readonly dateId?: string;
suggestedDateElementPropertiesChanges?: {};
suggestedDeletionIds?: string[];
suggestedInsertionIds?: string[];
suggestedTextStyleChanges?: {
[key: string]: SuggestedTextStyle;
}
;
textStyle?: TextStyle;
}

§Properties

§
dateElementProperties?: DateElementProperties
[src]

The properties of this DateElement.

§
readonly dateId?: string
[src]

Output only. The unique ID of this date.

§
suggestedDateElementPropertiesChanges?: {}
[src]

The suggested changes to the date element properties, keyed by suggestion ID.

§
suggestedDeletionIds?: string[]
[src]

IDs for suggestions that remove this date from the document. A DateElement might have multiple deletion IDs if, for example, multiple users suggest deleting it. If empty, then this date isn't suggested for deletion.

§
suggestedInsertionIds?: string[]
[src]

IDs for suggestions that insert this date into the document. A DateElement might have multiple insertion IDs if it's a nested suggested change (a suggestion within a suggestion made by a different user, for example). If empty, then this date isn't a suggested insertion.

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

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

§
textStyle?: TextStyle
[src]

The text style of this DateElement.