interface WordInfo {
    bold: boolean;
    color: string;
    italic: boolean;
    text: string;
    width?: number;
}

Properties

bold: boolean
color: string
italic: boolean
text: string
width?: number