StructureOutputJson
    Preparing search index...

    Type Alias TextStyle

    type TextStyle = {
        bold?: boolean;
        fontFace?: string;
        italic?: boolean;
        parentStyle?: string;
        pointSize?: number;
        strikethrough?: boolean;
        underline?: boolean;
        weight?: TextWeight;
    }
    Index

    Properties

    bold?: boolean

    A font is considered bold when fontWeight >= 700

    fontFace?: string

    Name of the font face to be used, like "Arial", or "Helvetica"

    italic?: boolean
    parentStyle?: string

    Named style from which this one inherits

    pointSize?: number

    Text size, in points

    strikethrough?: boolean
    underline?: boolean
    weight?: TextWeight