mirror of
https://github.com/orbitdb/orbitdb.git
synced 2025-03-30 15:08:28 +00:00
14 lines
207 B
JavaScript
14 lines
207 B
JavaScript
'use strict';
|
|
|
|
var encryption = require('./Encryption');
|
|
|
|
class MetaInfo {
|
|
constructor(type, size, ts) {
|
|
this.type = type;
|
|
this.size = size;
|
|
this.ts = ts;
|
|
}
|
|
}
|
|
|
|
module.exports = MetaInfo;
|