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

FootnoteReference

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

A ParagraphElement representing a footnote reference. A footnote reference is the inline content rendered with a number and is used to identify the footnote.

interface FootnoteReference {
footnoteId?: string;
footnoteNumber?: string;
suggestedDeletionIds?: string[];
suggestedInsertionIds?: string[];
suggestedTextStyleChanges?: {
[key: string]: SuggestedTextStyle;
}
;
textStyle?: TextStyle;
}

§Properties

§
footnoteId?: string
[src]

The ID of the footnote that contains the content of this footnote reference.

§
footnoteNumber?: string
[src]

The rendered number of this footnote.

§
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. A FootnoteReference 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 FootnoteReference, keyed by suggestion ID.

§
textStyle?: TextStyle
[src]

The text style of this FootnoteReference.