Interface LazyCanvasFont

interface LazyCanvasFont {
    family: string;
    path: string;
    structureType: string;
    weight:
        | "normal"
        | "bold"
        | "italic"
        | "bold italic"
        | "regular"
        | "semi-bold"
        | "extra-bold"
        | "light"
        | "extra-light";
    toJSON(): LazyCanvasFont;
}

Properties

family: string
path: string
structureType: string
weight:
    | "normal"
    | "bold"
    | "italic"
    | "bold italic"
    | "regular"
    | "semi-bold"
    | "extra-bold"
    | "light"
    | "extra-light"

Methods