UNPKG

@minecraft/creator-tools

Version:

Minecraft Creator Tools command line and libraries.

14 lines (13 loc) 288 B
import IFile from "./IFile"; export declare enum FileDifferenceType { none = 0, contentsDifferent = 1, fileAdded = 2, fileDeleted = 3 } export default interface IFileDifference { type: FileDifferenceType; original?: IFile; updated?: IFile; path: string; }