chrobject
Version:
Stores chronicles of plain objects as diffs and snapshots
15 lines (14 loc) • 472 B
JavaScript
/**
* Creator: Christian Hotz
* Company: hydra newmedia GmbH
* Date: 11.06.16
*
* Copyright hydra newmedia GmbH
*/
;
(function (Configuration) {
Configuration[Configuration["SNAP_AND_DIFF"] = 0] = "SNAP_AND_DIFF";
Configuration[Configuration["DIFF_ONLY"] = 1] = "DIFF_ONLY";
Configuration[Configuration["SNAP_ONLY"] = 2] = "SNAP_ONLY";
})(exports.Configuration || (exports.Configuration = {}));
var Configuration = exports.Configuration;