Interface FontAsset

    interface FontAsset {
        color?: string;
        family: string;
        id: string;
        metadata?: Record<string, unknown>;
        name: string;
        style?: string;
        type: "asset:font";
        weight?: number;
    }

    Hierarchy (View Summary)

    Index
    color?: string
    family: string
    id: string
    metadata?: Record<string, unknown>
    name: string
    style?: string
    type: "asset:font"
    weight?: number