Font information structure.

Contains information about a font including its name, file path, type, and URL for loading.

interface AcDbFontInfo {
    file: string;
    name: string[];
    type: "woff" | "shx";
    url: string;
}

Properties

Properties

file: string

Font file name

name: string[]

Array of font names/aliases

type: "woff" | "shx"

Font type (woff or shx)

url: string

URL for loading the font