@serenity-js/core
Version:
The core Serenity/JS framework, providing the Screenplay Pattern interfaces, as well as the test reporting and integration infrastructure
11 lines • 399 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.LogEntry = void 0;
const JSONData_1 = require("./JSONData");
class LogEntry extends JSONData_1.JSONData {
static fromJSON(value) {
return new LogEntry(Buffer.from(JSON.stringify(value, undefined, 0), 'utf8').toString('base64'));
}
}
exports.LogEntry = LogEntry;
//# sourceMappingURL=LogEntry.js.map
;