19 lines
741 B
JavaScript
19 lines
741 B
JavaScript
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.Logs = void 0;
|
|
var Logs = /** @class */ (function () {
|
|
function Logs() {
|
|
this.cameraLogsContainer = document.querySelector('.ntsh_tab[tabid="cameralogs"] .ntsh_logs');
|
|
this.unityLogsContainer = document.querySelector('.ntsh_tab[tabid="unitylogs"] .ntsh_logs');
|
|
}
|
|
Logs.prototype.setCameraLogs = function (logs) {
|
|
this.applyLogs(this.cameraLogsContainer, logs);
|
|
};
|
|
Logs.prototype.setUnityLogs = function (logs) {
|
|
this.applyLogs(this.unityLogsContainer, logs);
|
|
};
|
|
Logs.prototype.applyLogs = function (container, logs) { };
|
|
return Logs;
|
|
}());
|
|
exports.Logs = Logs;
|
|
//# sourceMappingURL=logs.js.map
|