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

NamedStyleSuggestionState

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

A suggestion state of a NamedStyle message.

interface NamedStyleSuggestionState {
namedStyleType?:
| "NAMED_STYLE_TYPE_UNSPECIFIED"
| "NORMAL_TEXT"
| "TITLE"
| "SUBTITLE"
| "HEADING_1"
| "HEADING_2"
| "HEADING_3"
| "HEADING_4"
| "HEADING_5"
| "HEADING_6";
paragraphStyleSuggestionState?: ParagraphStyleSuggestionState;
textStyleSuggestionState?: TextStyleSuggestionState;
}

§Properties

§
namedStyleType?: "NAMED_STYLE_TYPE_UNSPECIFIED" | "NORMAL_TEXT" | "TITLE" | "SUBTITLE" | "HEADING_1" | "HEADING_2" | "HEADING_3" | "HEADING_4" | "HEADING_5" | "HEADING_6"
[src]

The named style type that this suggestion state corresponds to. This field is provided as a convenience for matching the NamedStyleSuggestionState with its corresponding NamedStyle.

§
paragraphStyleSuggestionState?: ParagraphStyleSuggestionState
[src]

A mask that indicates which of the fields in paragraph style have been changed in this suggestion.

§
textStyleSuggestionState?: TextStyleSuggestionState
[src]

A mask that indicates which of the fields in text style have been changed in this suggestion.