Interface FontAsset

    interface FontAsset {
        "[dispose]": () => void;
        color?: string;
        dispose: () => void;
        family: string;
        id: string;
        isBuiltIn?: boolean;
        metadata?: Record<string, unknown>;
        name: string;
        style?: string;
        toJSON: () => Schema.FontAsset;
        type: "asset:font";
        weight?: number;
    }

    Hierarchy (View Summary)

    Index
    "[dispose]": () => void
    color?: string
    dispose: () => void
    family: string
    id: string
    isBuiltIn?: boolean
    metadata?: Record<string, unknown>
    name: string
    style?: string
    toJSON: () => Schema.FontAsset
    type: "asset:font"
    weight?: number