Skip to content

Commit

Permalink
fix exports
Browse files Browse the repository at this point in the history
  • Loading branch information
sgratzl committed Dec 23, 2018
1 parent dc5d892 commit 8f0fb25
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 14 deletions.
15 changes: 2 additions & 13 deletions src/provider/tasks.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ export {IAbortAblePromise} from 'lineupengine';

/**
* a render task that is already resolved
* @internal
*/
export class TaskNow<T> implements IRenderTask<T> {
constructor(public readonly v: T) {
Expand All @@ -25,16 +24,14 @@ export class TaskNow<T> implements IRenderTask<T> {
}

/**
* factory function for TaskNow
* @internal
* factory function for
*/
export function taskNow<T>(v: T) {
return new TaskNow(v);
}

/**
* a render task based on an abortable promise
* @internal
*/
export class TaskLater<T> implements IRenderTask<T> {
constructor(public readonly v: IAbortAblePromise<T>) {
Expand All @@ -47,9 +44,6 @@ export class TaskLater<T> implements IRenderTask<T> {
}
}

/**
* @internal
*/
export function taskLater<T>(v: IAbortAblePromise<T>) {
return new TaskLater(v);
}
Expand Down Expand Up @@ -87,9 +81,6 @@ export interface IRenderTaskExectutor extends IRenderTasks {
valueCache(col: Column): undefined | ((dataIndex: number) => any);
}

/**
* @internal
*/
export class MultiIndices {
private _joined: IndicesArray | null = null;

Expand All @@ -116,9 +107,7 @@ export class MultiIndices {
*/
const CHUNK_SIZE = 100;

/**
* @internal
*/

export class ARenderTasks {
protected readonly valueCacheData = new Map<string, Float32Array | UIntTypedArray | Int32Array | Float64Array>();

Expand Down
3 changes: 2 additions & 1 deletion webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,8 @@ module.exports = (_env, options) => {
// ignored: /node_modules/
},
devServer: {
contentBase: 'demo'
contentBase: 'demo',
disableHostCheck: true
}
};
};

0 comments on commit 8f0fb25

Please sign in to comment.