interface ZipDirectoryEntry
implements ZipEntry
import { type ZipDirectoryEntry } from "https://deno.land/x/gotenberg@0.4.0/deps/zip.ts";
Methods
getChildByName(name: string): ZipEntry
addDirectory(name: string): ZipDirectoryEntry
addText(name: string, text: string): ZipFileEntry
addBlob(name: string, blob: Blob): ZipFileEntry
addData64URI(name: string, dataURI: string): ZipFileEntry
addUint8Array(name: string, array: Uint8Array): ZipFileEntry
addHttpContent(): ZipFileEntry
name: string,
url: string,
options?: HttpOptions,
addFileSystemEntry(fileSystemEntry: FileSystemEntry): Promise<ZipEntry>
importBlob(blob: Blob, options?: ZipReaderConstructorOptions): Promise<void>
exportBlob(options?: ZipDirectoryEntryExportOptions): Promise<Blob>