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

DocumentTab

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

A tab with document contents.

interface DocumentTab {
body?: Body;
documentStyle?: DocumentStyle;
footers?: {
[key: string]: Footer;
}
;
footnotes?: {
[key: string]: Footnote;
}
;
headers?: {
[key: string]: Header;
}
;
inlineObjects?: {
[key: string]: InlineObject;
}
;
lists?: {
[key: string]: List;
}
;
namedRanges?: {
[key: string]: NamedRanges;
}
;
namedStyles?: NamedStyles;
positionedObjects?: {
[key: string]: PositionedObject;
}
;
suggestedDocumentStyleChanges?: {
[key: string]: SuggestedDocumentStyle;
}
;
suggestedNamedStylesChanges?: {
[key: string]: SuggestedNamedStyles;
}
;
}

§Properties

§
body?: Body
[src]

The main body of the document tab.

§
documentStyle?: DocumentStyle
[src]

The style of the document tab.

§
footers?: {
[key: string]: Footer;
}
[src]

The footers in the document tab, keyed by footer ID.

§
footnotes?: {
[key: string]: Footnote;
}
[src]

The footnotes in the document tab, keyed by footnote ID.

§
headers?: {
[key: string]: Header;
}
[src]

The headers in the document tab, keyed by header ID.

§
inlineObjects?: {
[key: string]: InlineObject;
}
[src]

The inline objects in the document tab, keyed by object ID.

§
lists?: {
[key: string]: List;
}
[src]

The lists in the document tab, keyed by list ID.

§
namedRanges?: {
[key: string]: NamedRanges;
}
[src]

The named ranges in the document tab, keyed by name.

§
namedStyles?: NamedStyles
[src]

The named styles of the document tab.

§
positionedObjects?: {
[key: string]: PositionedObject;
}
[src]

The positioned objects in the document tab, keyed by object ID.

§
suggestedDocumentStyleChanges?: {
[key: string]: SuggestedDocumentStyle;
}
[src]

The suggested changes to the style of the document tab, keyed by suggestion ID.

§
suggestedNamedStylesChanges?: {
[key: string]: SuggestedNamedStyles;
}
[src]

The suggested changes to the named styles of the document tab, keyed by suggestion ID.