Skip to content

Commit

Permalink
fix(core): shared data-types for resolver/baseliner interaction
Browse files Browse the repository at this point in the history
  • Loading branch information
Igmat committed Mar 1, 2018
1 parent 7752062 commit 48816d5
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
1 change: 1 addition & 0 deletions packages/baset-core/src/dataTypes.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export const image = Symbol('image');
6 changes: 5 additions & 1 deletion packages/baset-core/src/index.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import * as dataTypes from './dataTypes';
import * as utils from './utils';

export { AbstractBaseliner } from './abstractBaseliner';
Expand All @@ -6,4 +7,7 @@ export { AbstractResolver } from './abstractResolver';
export { AbstractEnvironmet } from './abstractEnvironment';
export { circularReference, ITestGroupOptions } from './testGroup';
export { Tester } from './tester';
export { utils };
export {
utils,
dataTypes,
};

0 comments on commit 48816d5

Please sign in to comment.