@versatiles/style
    Preparing search index...

    Type Alias FontFaceInfo

    One glyph face a server publishes, described for a font picker.

    npm only. Not exported by the browser bundle (versatiles-style.js) — see the versatiles-style.js module for what that carries.

    type FontFaceInfo = {
        codeblocks: string;
        family: string;
        id: string;
        italic: boolean;
        title: string;
        weight: number;
        width: string;
    }
    Index
    codeblocks: string

    The 16-codepoint blocks the face covers, as the server publishes them; read by fontCovers().

    family: string

    The family, e.g. 'Fira Sans'.

    id: string

    The glyph name — a value for a font in text, e.g. 'fira_sans_condensed_light_italic'.

    italic: boolean
    title: string

    A readable name, e.g. 'Fira Sans Condensed Light Italic'.

    weight: number

    The CSS weight, 100–900.

    width: string

    The CSS width: 'normal', 'condensed', 'extra-condensed', …