interface FontJson {
    decoration?: "none" | "line-through" | "underline";
    family?: string;
    size?: number;
    style?: "italic" | "normal" | "oblique";
    weight?:
        | "bold"
        | "normal"
        | "bolder"
        | "lighter";
}

Properties

decoration?: "none" | "line-through" | "underline"

The text decoration.

family?: string

The font family.

size?: number

The font size.

style?: "italic" | "normal" | "oblique"

The text style.

weight?:
    | "bold"
    | "normal"
    | "bolder"
    | "lighter"

The text weight.