Interface SatoriFontOptions

Satori font options

OBS: Types copied from Satori

interface SatoriFontOptions {
    data?: ArrayBuffer;
    name: string;
    style: "normal" | "italic";
    url?: string;
    weight:
        | 100
        | 200
        | 300
        | 400
        | 500
        | 600
        | 700
        | 800
        | 900;
}

Properties

data?: ArrayBuffer
name: string
style: "normal" | "italic"
url?: string
weight:
    | 100
    | 200
    | 300
    | 400
    | 500
    | 600
    | 700
    | 800
    | 900