Type Alias FileInfo

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

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

Type declaration

  • buffer: Uint8Array

    The data of the file.

  • Optionaldescription?: string

    An optional description.

  • filename: string

    The filename.

  • Optionalid?: string

    An optional ID.

  • mimetype: string

    The MIME type of the file.