@tripsnek/tmf
Version:
TypeScript Modeling Framework - A TypeScript port of the Eclipse Modeling Framework (EMF)
14 lines • 398 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.EFactory = void 0;
/**
* This is an EMF ECore class that we have defined as a placeholder. We do not
* yet have plans to implement EFactory.
*/
class EFactory {
create(eClass) {
throw Error('Not implemented in base class');
}
}
exports.EFactory = EFactory;
//# sourceMappingURL=efactory.js.map