20 lines
548 B
JavaScript
20 lines
548 B
JavaScript
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.StreamPatchSerializer = void 0;
|
|
exports.StreamPatchSerializer = {
|
|
_fromJsonObject(object) {
|
|
return {
|
|
description: object["description"],
|
|
metadata: object["metadata"],
|
|
uid: object["uid"],
|
|
};
|
|
},
|
|
_toJsonObject(self) {
|
|
return {
|
|
description: self.description,
|
|
metadata: self.metadata,
|
|
uid: self.uid,
|
|
};
|
|
},
|
|
};
|
|
//# sourceMappingURL=streamPatch.js.map
|