Plants vs. Zombies: Replanted - v1.0.3
    Preparing search index...

    Interface IFileChange

    details about a file change

    interface IFileChange {
        changeType: "refchange" | "valchange" | "deleted" | "srcdeleted";
        destTime?: Date;
        filePath: string;
        source: string;
        sourceTime?: Date;
    }
    Index

    Properties

    changeType: "refchange" | "valchange" | "deleted" | "srcdeleted"

    type of change. refchange means that the installed file now references a different object. This could happen if a file was installed/overwritten by a different application or the file was changed by an application that didn't edit in-place (most applications will write to a temporary file and, on success, move the temp file over the original, thus creating a new file entry) valchange means that the content of the file was changed in-place (as in: file was opened and then written to) deleted means that the file was deleted in the destination directory srcdeleted means that the file was deleted in the source directory

    destTime?: Date

    time the deployed file was last changed

    filePath: string

    relative path to the changed file

    source: string

    the source mod

    sourceTime?: Date

    time the staging file was last changed