Interface representing the data structure for a Font.

Style

interface Font {
    family: string;
    size: string | number;
    style: string;
    color: string;
    weight: string | number;
}

Properties

family: string
size: string | number
style: string
color: string
weight: string | number