vtally
Version:
An affordable and reliable Tally Light that works via WiFi based on NodeMCU / ESP8266. Supports multiple video mixers.
18 lines (17 loc) • 473 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
const interfaces_1 = require("../interfaces");
class NullConfiguration extends interfaces_1.Configuration {
fromJson(data) {
// empty. Has no settings, so nothing to load
}
toJson() {
return {};
}
clone() {
const clone = new NullConfiguration();
clone.fromJson(this.toJson());
return clone;
}
}
exports.default = NullConfiguration;