gespenst API - v0.1.0
    Preparing search index...

    Interface WebFontDefinition

    Describes a browser font face to load for a terminal.

    interface WebFontDefinition {
        descriptors?: FontFaceDescriptors;
        family: string;
        source: string | ArrayBuffer;
    }
    Index
    descriptors?: FontFaceDescriptors

    Optional descriptors forwarded to the browser FontFace constructor.

    family: string

    Font-family name made available to the terminal renderer.

    source: string | ArrayBuffer

    CSS font source string or raw font bytes.