registry.js 317 B

12345678910
  1. import { __extends } from "tslib";
  2. import RegistryBase from "./registry-base";
  3. var Registry = (function (_super) {
  4. __extends(Registry, _super);
  5. function Registry() {
  6. return _super !== null && _super.apply(this, arguments) || this;
  7. }
  8. return Registry;
  9. }(RegistryBase));
  10. export default Registry;