open-nav
    Preparing search index...

    Interface InvoiceLogo

    interface InvoiceLogo {
        alt?: string;
        src: string;
        width?: string;
    }
    Index
    alt?: string

    Alternative text, for accessibility and for a failed image.

    src: string

    Image source: a data: URI, or an absolute URL.

    Prefer a data URI. An external URL leaves the document dependent on the network, which defeats archiving it as a single file and can quietly produce a logo-less PDF.

    width?: string

    Rendered width as a CSS length. Height follows the aspect ratio.