StructureOutputJson
    Preparing search index...

    Type Alias Paragraph

    type Paragraph = {
        contents?: InlineElement[] | string;
        groupId?: number;
        properties?: ParagraphProps;
        rect: Rect;
        textStyle?: TextStyle;
        type: "paragraph";
    }
    Index

    Properties

    contents?: InlineElement[] | string
    groupId?: number

    a number used to identify elements that are semantically continuous, for example, a table that has broken across pages would be represented by multiple elements, but all with the same group ID

    properties?: ParagraphProps
    rect: Rect
    textStyle?: TextStyle
    type: "paragraph"