Skip to content

Commit

Permalink
export more interfaces
Browse files Browse the repository at this point in the history
  • Loading branch information
sgratzl committed Aug 21, 2017
1 parent db686fc commit 01d4d7c
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/lineup/ARankingView.ts
Original file line number Diff line number Diff line change
Expand Up @@ -302,7 +302,7 @@ export abstract class ARankingView extends AView {
return withoutTracking(this.context.ref, () => f(this.lineup));
}

private addTrackedScoreColumn(score: IScore<any>) {
addTrackedScoreColumn(score: IScore<any>) {
return this.withoutTracking(() => this.addScoreColumn(score));
}

Expand Down
1 change: 1 addition & 0 deletions src/lineup/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,4 @@ export {ISelectionAdapter, multi, single} from './selection';
export {IScore, IScoreRow, IScoreParam} from './IScore';
export {numberCol, stringCol, categoricalCol, booleanCol} from './desc';
export {IRow} from './interfaces';
export {IViewProvider} from './internal/scorecmds';
3 changes: 2 additions & 1 deletion src/views/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,6 @@ export {default as AView} from './AView';
export {default as ARankingView} from './ARankingView';
export {default as AStartList} from './AStartList';
export {default as AD3View} from './AD3View';
export {ISelection, IViewContext, IViewPluginDesc, IView, EViewMode} from './interfaces';
export {ISelection, IViewContext, IViewPluginDesc, IView, EViewMode, toViewPluginDesc, createContext, isSameSelection, matchLength, showAsSmallMultiple, willShowChooser} from './interfaces';
export {resolveId, resolveIds, resolveIdToNames} from './resolve';
export {default as findViews} from './findViews';

0 comments on commit 01d4d7c

Please sign in to comment.