omni-compress - v2.3.1
    Preparing search index...

    Interface ArchiveEntry

    A single file entry for the archive() / archiveStream() functions.

    interface ArchiveEntry {
        name: string;
        data: File | Blob | Uint8Array<ArrayBufferLike>;
    }
    Index

    Properties

    Properties

    name: string

    Path/name of the file inside the ZIP (e.g. 'images/photo.webp').

    data: File | Blob | Uint8Array<ArrayBufferLike>

    File contents. File and Blob are read via .arrayBuffer().