md-curcuma
Version:
A Typescript library for transporting and converting markdown and other data.
26 lines (25 loc) • 638 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.Json_IO = void 0;
const observer_1 = require("../core/observer");
class Json_IO {
constructor(props) {
this.observer_subject = new observer_1.Observer_Subject();
this.props = null;
this.props = props;
}
add_observer(observer, id) {
this.observer_subject.add_observer(observer, id);
}
notify_all(props) {
this.observer_subject.notify_all(props);
}
notify(props) {
this.observer_subject.notify(props);
}
read() {
}
write(dao) {
}
}
exports.Json_IO = Json_IO;