Skip to content

Commit

Permalink
fix imports
Browse files Browse the repository at this point in the history
  • Loading branch information
sgratzl committed Dec 15, 2018
1 parent 4c0ed02 commit 224d775
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion src/provider/ADataProvider.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@ import RankColumn from '../model/RankColumn';
import Ranking, {addColumn, EDirtyReason, orderChanged, removeColumn} from '../model/Ranking';
import {IColumnDump, IDataProvider, IDataProviderDump, IDataProviderOptions, IRankingDump, SCHEMA_REF, EAggregationState} from './interfaces';
import {exportRanking, IExportOptions, map2Object, object2Map} from './utils';
import {IRenderTasks} from './tasks';
import {IRenderTasks} from '../renderer/interfaces';


export {IExportOptions} from './utils';

Expand Down
2 changes: 1 addition & 1 deletion src/provider/RemoteDataProvider.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import {defaultGroup, IndicesArray} from '../model/Group';
import Ranking from '../model/Ranking';
import ACommonDataProvider from './ACommonDataProvider';
import {IDataProviderOptions} from './interfaces';
import {DirectRenderTasks} from './tasks';
import {DirectRenderTasks} from './DirectRenderTasks';

/**
* interface what the server side has to provide
Expand Down
2 changes: 1 addition & 1 deletion src/provider/interfaces.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import {Column, IColumnDesc, IGroup, IndicesArray, IDataRow} from '../model';
import Ranking from '../model/Ranking';
import '!file-loader?name=schema.4.0.0.json!./schema.json';
import {ISequence} from '../internal/interable';
import {IRenderTasks} from './tasks';
import {IRenderTasks} from '../renderer/interfaces';

export enum EAggregationState {
COLLAPSE = 'collapse',
Expand Down

0 comments on commit 224d775

Please sign in to comment.