From 63f01d4b146a4bb8cc198b6593545d7422e65fe9 Mon Sep 17 00:00:00 2001 From: Colin Date: Thu, 14 Jan 2021 09:23:23 -0700 Subject: [PATCH] Fix lint --- plugins/linear-genome-view/src/index.ts | 2 ++ plugins/svg/src/index.ts | 6 ------ 2 files changed, 2 insertions(+), 6 deletions(-) diff --git a/plugins/linear-genome-view/src/index.ts b/plugins/linear-genome-view/src/index.ts index 90b44ac760..0fe07ffab9 100644 --- a/plugins/linear-genome-view/src/index.ts +++ b/plugins/linear-genome-view/src/index.ts @@ -134,5 +134,7 @@ export { baseLinearDisplayConfigSchema, linearBasicDisplayConfigSchemaFactory, } + export type { LinearGenomeViewModel, LinearGenomeViewStateModel, BlockModel } + export type { BaseLinearDisplayModel } from './BaseLinearDisplay' diff --git a/plugins/svg/src/index.ts b/plugins/svg/src/index.ts index ece9d86f16..867f98fed1 100644 --- a/plugins/svg/src/index.ts +++ b/plugins/svg/src/index.ts @@ -1,14 +1,8 @@ import DisplayType from '@jbrowse/core/pluggableElementTypes/DisplayType' import BoxRendererType from '@jbrowse/core/pluggableElementTypes/renderers/BoxRendererType' import Plugin from '@jbrowse/core/Plugin' -import { ConfigurationSchema } from '@jbrowse/core/configuration' import PluginManager from '@jbrowse/core/PluginManager' -import TrackType from '@jbrowse/core/pluggableElementTypes/TrackType' import { BaseLinearDisplayComponent } from '@jbrowse/plugin-linear-genome-view' -import { - createBaseTrackConfig, - createBaseTrackModel, -} from '@jbrowse/core/pluggableElementTypes/models' import { configSchema as svgFeatureRendererConfigSchema, ReactComponent as SvgFeatureRendererReactComponent,