'use strict'; class MetaInfo { constructor(type, size, ts) { this.type = type; this.size = size; this.ts = ts; } } module.exports = MetaInfo;