UNPKG

md-curcuma

Version:

A Typescript library for transporting and converting markdown and other data.

26 lines (25 loc) 638 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.Html_IO = void 0; const observer_1 = require("../core/observer"); class Html_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.Html_IO = Html_IO;