-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.js
More file actions
23 lines (23 loc) · 794 Bytes
/
index.js
File metadata and controls
23 lines (23 loc) · 794 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
"use strict";
var __importStar = (this && this.__importStar) || function (mod) {
if (mod && mod.__esModule) return mod;
var result = {};
if (mod != null) for (var k in mod) if (Object.hasOwnProperty.call(mod, k)) result[k] = mod[k];
result["default"] = mod;
return result;
};
exports.__esModule = true;
var _Operational = __importStar(require("./plain"));
var _SerializedOperational = __importStar(require("./serialized"));
/**
* @description
* A collection of functions to manage changes in objects.
* Changed values are tracked in object form.
*/
exports.Operational = _Operational;
/**
* @description
* A collection of functions to manage changes in objects.
* Changed values are tracked in string form.
*/
exports.SerializedOperational = _SerializedOperational;