jinaga
Version:
Data management for web and mobile applications.
17 lines • 628 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.InverseSpecificationEngine = void 0;
class InverseSpecificationEngine {
constructor(addListener, removeListener) {
this.addListener = addListener;
this.removeListener = removeListener;
}
addSpecificationListener(specification, onResult) {
return this.addListener(specification, onResult);
}
removeSpecificationListener(listener) {
this.removeListener(listener);
}
}
exports.InverseSpecificationEngine = InverseSpecificationEngine;
//# sourceMappingURL=inverse-specification-engine.js.map