Skip to content

Commit

Permalink
fix imports
Browse files Browse the repository at this point in the history
  • Loading branch information
sgratzl committed Nov 29, 2018
1 parent 7edb539 commit ec8ecb2
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/internal/math.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import {histogram, quantile} from 'd3-array';
import {ICategory, isMissingValue} from '../model';
import {ICategory} from '../model';
import {ISequence} from './interable';

export interface INumberBin {
Expand Down
3 changes: 2 additions & 1 deletion src/model/HierarchyColumn.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import {Category, toolbar} from './annotations';
import CategoricalColumn from './CategoricalColumn';
import Column, {widthChanged, labelChanged, metaDataChanged, dirty, dirtyHeader, dirtyValues, rendererTypeChanged, groupRendererChanged, summaryRendererChanged, visibilityChanged} from './Column';
import Column, {widthChanged, labelChanged, metaDataChanged, dirty, dirtyHeader, dirtyValues, dirtyCaches, rendererTypeChanged, groupRendererChanged, summaryRendererChanged, visibilityChanged} from './Column';
import {ICategoricalColumn, ICategory} from './ICategoricalColumn';
import {IDataRow, IGroup} from './interfaces';
import {colorPool} from './internal';
Expand Down Expand Up @@ -129,6 +129,7 @@ export default class HierarchyColumn extends ValueColumn<string> implements ICat
on(type: typeof Column.EVENT_DIRTY, listener: typeof dirty | null): this;
on(type: typeof Column.EVENT_DIRTY_HEADER, listener: typeof dirtyHeader | null): this;
on(type: typeof Column.EVENT_DIRTY_VALUES, listener: typeof dirtyValues | null): this;
on(type: typeof Column.EVENT_DIRTY_CACHES, listener: typeof dirtyCaches | null): this;
on(type: typeof Column.EVENT_RENDERER_TYPE_CHANGED, listener: typeof rendererTypeChanged | null): this;
on(type: typeof Column.EVENT_GROUP_RENDERER_TYPE_CHANGED, listener: typeof groupRendererChanged | null): this;
on(type: typeof Column.EVENT_SUMMARY_RENDERER_TYPE_CHANGED, listener: typeof summaryRendererChanged | null): this;
Expand Down
2 changes: 1 addition & 1 deletion src/ui/EngineRanking.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import {IExceptionContext, nonUniformContext, uniformContext, PrefetchMixin, Gri
import {HOVER_DELAY_SHOW_DETAIL} from '../config';
import AEventDispatcher, {IEventContext, IEventHandler, IEventListener} from '../internal/AEventDispatcher';
import debounce from '../internal/debounce';
import {IDataRow, IGroupData, IGroupItem, isGroup, isMultiLevelColumn, ValueColumn, toGroupMeta} from '../model';
import {IDataRow, IGroupData, IGroupItem, isGroup, isMultiLevelColumn, toGroupMeta} from '../model';
import Column from '../model/Column';
import Ranking from '../model/Ranking';
import StackColumn from '../model/StackColumn';
Expand Down

0 comments on commit ec8ecb2

Please sign in to comment.