method ZipFileEntry.prototype.getDataimport { ZipFileEntry } from "https://dotland.deno.dev/x/zipjs@v2.7.23/index.js"; 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.