interface EntryMetaDataimport { type EntryMetaData } from "https://dotland.deno.dev/x/zipjs@v2.7.42/index.js"; Represents the metadata of an entry in a zip file (Core API). Propertiesoffset: numberThe byte offset of the entry. filename: stringThe filename of the entry. rawFilename: Uint8ArrayThe filename of the entry (raw). filenameUTF8: booleantrue if the filename is encoded in UTF-8. directory: booleantrue if the entry is a directory. encrypted: booleantrue if the content of the entry is encrypted. compressedSize: numberThe size of the compressed data in bytes. uncompressedSize: numberThe size of the decompressed data in bytes. lastModDate: DateThe last modification date. optionallastAccessDate: DateThe last access date. optionalcreationDate: DateThe creation date. rawLastModDate: number | bigintThe last modification date (raw). optionalrawLastAccessDate: number | bigintThe last access date (raw). optionalrawCreationDate: number | bigintThe creation date (raw). comment: stringThe comment of the entry. rawComment: Uint8ArrayThe comment of the entry (raw). commentUTF8: booleantrue if the comment is encoded in UTF-8. signature: numberThe signature (CRC32 checksum) of the content. optionalextraField: Map<number, Uint8Array>The extra field. rawExtraField: Uint8ArrayThe extra field (raw). zip64: booleantrue if the entry is using Zip64. version: numberThe "Version" field. versionMadeBy: numberThe "Version made by" field. msDosCompatible: booleantrue if internalFileAttribute and externalFileAttribute are compatible with MS-DOS format. internalFileAttribute: numberThe internal file attribute (raw). externalFileAttribute: numberThe external file attribute (raw). diskNumberStart: numberThe number of the disk where the entry data starts.