simple-bound
Version:
A simple and customizable reactive data-binding library.
19 lines • 631 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
const boundError_1 = require("../boundError");
const base_1 = require("./base");
class ProxyBound extends base_1.default {
constructor(obj, plugins) {
super(obj, plugins);
this.storage = {};
throw new boundError_1.default('Class not implemented.');
}
bind(obj, twoWay) {
throw new boundError_1.default('Method not implemented.');
}
unbind(obj) {
throw new boundError_1.default('Method not implemented.');
}
}
exports.default = ProxyBound;
//# sourceMappingURL=proxy.js.map