import { ZipFileEntry } from "https://deno.land/x/zipjs@v2.7.23/index.d.ts";
Represents a file entry in the zip (Filesystem API).
Properties
void
for ZipFileEntry instances.
The Reader instance used to read the content of the entry.
The Writer instance used to write the content of the entry.
Methods
Retrieves the content of the entry as a Blob
instance
Retrieves the content of the entry via a Writer instance
Retrieves the content of the entry as as a Data URI string
encoded in Base64
Retrieves the text content of the entry as a string
Retrieves the content of the entry as a Uint8Array
instance
Retrieves the content of the entry via a WritableStream
instance
Replaces the content of the entry with a Blob
instance
Replaces the content of the entry with a Data URI string
encoded in Base64
Replaces the content of the entry with a ReadableStream
instance
Replaces the content of the entry with a string
Replaces the content of the entry with a Uint8Array
instance