UNPKG

173 BJavaScriptView Raw
1module.exports = Snapshot;
2function Snapshot(id, version, type, data, meta) {
3 this.id = id;
4 this.v = version;
5 this.type = type;
6 this.data = data;
7 this.m = meta;
8}