Repository URL to install this package:
|
Version:
1.1.3 ▾
|
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
/**
* Holds a serialized configuration state of dynamic encoding.
*/
var Config = /** @class */ (function () {
function Config(encoding, data) {
this.encoding = encoding;
this.data = data;
}
return Config;
}());
exports.Config = Config;
exports.default = Config;
//# sourceMappingURL=config.js.map