interface JTextAnnotationStyleParams {
    bold: boolean;
    description?: string;
    id?: string;
    italic: boolean;
    name: string;
    organizationId?: string;
    outlineColor: undefined | string;
    tags: string[];
    textColor: string;
    transparency: number;
    type: "TEXT";
}

Hierarchy (view full)

Properties

bold: boolean
description?: string
id?: string
italic: boolean
name: string
organizationId?: string
outlineColor: undefined | string
tags: string[]
textColor: string
transparency: number
type: "TEXT"