From c4728df1c14542415c2fba76d64f9cd894216386 Mon Sep 17 00:00:00 2001 From: rozetko Date: Tue, 24 May 2022 20:39:03 +0400 Subject: [PATCH] rm unused imports --- src/models/state.ts | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/models/state.ts b/src/models/state.ts index 72ff5e9..b70121a 100755 --- a/src/models/state.ts +++ b/src/models/state.ts @@ -1,4 +1,4 @@ -import { Serie, Options, yAxisOrientation } from '../types'; +import { Serie, Options } from '../types'; import { CoreSeries } from './series'; import { CoreOptions } from './options'; @@ -6,9 +6,7 @@ import * as d3 from 'd3'; import cloneDeep from 'lodash/cloneDeep'; import min from 'lodash/min'; -import minBy from 'lodash/minBy'; import max from 'lodash/max'; -import maxBy from 'lodash/maxBy'; import sortBy from 'lodash/sortBy'; import reverse from 'lodash/reverse';