@e-invoice-eu/core
    Preparing search index...

    Type Alias FileInfo

    A container for a file used for an e-invoice.

    type FileInfo = {
        buffer: Uint8Array;
        description?: string;
        filename: string;
        id?: string;
        mimetype: string;
    }
    Index

    Properties

    buffer: Uint8Array

    The data of the file.

    description?: string

    An optional description.

    filename: string

    The filename.

    id?: string

    An optional ID.

    mimetype: string

    The MIME type of the file.