import Plugin from '@jbrowse/core/Plugin'
import FeatureRendererType from '@jbrowse/core/pluggableElementTypes/renderers/FeatureRendererType'
console.log({ FeatureRendererType })
class DoesntWork extends FeatureRendererType {}
export default class TemplatePlugin extends Plugin {
name = 'TemplatePlugin'
install() {
// @ts-expect-error
const t = new DoesntWork({})
console.log(t)
}
configure() {}
}
the output of the console.log shows that the "default export" is on FeatureRendererType.default
the output of the console.log shows that the "default export" is on FeatureRendererType.default