import { ZipFileEntry } from "https://dotland.deno.dev/x/zipjs@v2.6.68/index.d.ts";
Represents a file entry in the zip (Filesystem API).
Properties
Methods
getBlob(mimeType?: string, options?: EntryGetDataOptions): Promise<Blob>
Retrieves the content of the entry as a Blob
instance
getData(writer: , options?: EntryGetDataOptions): Promise<unknown>
Retrieves the content of the entry via a Writer instance
getData64URI(mimeType?: string, options?: EntryGetDataOptions): Promise<string>
Retrieves the content of the entry as as a Data URI string
encoded in Base64
getText(encoding?: string, options?: EntryGetDataOptions): Promise<string>
Retrieves the text content of the entry as a string
getUint8Array(options?: EntryGetDataOptions): Promise<Uint8Array>
Retrieves the content of the entry as a Uint8Array
instance
getWritable(writable?: WritableStream, options?: EntryGetDataOptions): Promise<WritableStream>
Retrieves the content of the entry via a WritableStream
instance
replaceData64URI(dataURI: string): void
Replaces the content of the entry with a Data URI string
encoded in Base64
replaceReadable(readable: ReadableStream): void
Replaces the content of the entry with a ReadableStream
instance
replaceUint8Array(array: Uint8Array): void
Replaces the content of the entry with a Uint8Array
instance