@zip.js/zip.js
    Preparing search index...

    Interface EntryExtraFieldExtendedTimestamp

    Represents the extended timestamp extra field record of an entry (0x5455), storing the dates as 32-bit Unix times. The central directory record only carries the last modification date, the local file header carries the dates selected by the flags of the extra field.

    interface EntryExtraFieldExtendedTimestamp {
        creationDate?: Date;
        data: Uint8Array;
        lastAccessDate?: Date;
        lastModDate?: Date;
        rawCreationDate?: number;
        rawLastAccessDate?: number;
        rawLastModDate?: number;
        type: number;
    }

    Hierarchy (View Summary)

    Index
    creationDate?: Date

    The creation date.

    data: Uint8Array

    The data of the extra field.

    lastAccessDate?: Date

    The last access date.

    lastModDate?: Date

    The last modification date.

    rawCreationDate?: number

    The creation date (raw), as a 32-bit Unix time.

    rawLastAccessDate?: number

    The last access date (raw), as a 32-bit Unix time.

    rawLastModDate?: number

    The last modification date (raw), as a 32-bit Unix time.

    type: number

    The type (header id) of the extra field.