method ZipFileEntry.prototype.getDataimport { ZipFileEntry } from "https://dotland.deno.dev/x/zipjs@v2.6.68/index.d.ts"; getData(writer: | Writer<unknown> | WritableWriter | WritableStream | AsyncGenerator<Writer<unknown> | WritableWriter | WritableStream>, options?: EntryGetDataOptions): Promise<unknown>Retrieves the content of the entry via a Writer instance Retrieves the content of the entry via a Writer instance Parameterswriter: | Writer<unknown> | WritableWriter | WritableStream | AsyncGenerator<Writer<unknown> | WritableWriter | WritableStream>The Writer instance. optionaloptions: EntryGetDataOptionsThe options. ReturnsPromise<unknown>A promise resolving to data associated to the Writer instance.