@jbrowse/core
Version:
JBrowse 2 core libraries used by plugins
19 lines (18 loc) • 714 B
JavaScript
;
var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod };
};
Object.defineProperty(exports, "__esModule", { value: true });
const PluggableElementBase_1 = __importDefault(require("./PluggableElementBase"));
class DisplayType extends PluggableElementBase_1.default {
constructor(stuff) {
super(stuff);
this.stateModel = stuff.stateModel;
this.subDisplay = stuff.subDisplay;
this.configSchema = stuff.configSchema;
this.ReactComponent = stuff.ReactComponent;
this.trackType = stuff.trackType;
this.viewType = stuff.viewType;
}
}
exports.default = DisplayType;