Skip to content
This repository has been archived by the owner on Apr 14, 2020. It is now read-only.

Commit

Permalink
fix(exports) Added missing exports
Browse files Browse the repository at this point in the history
  • Loading branch information
taras committed Aug 20, 2017
1 parent a04dd0c commit 3393a6e
Showing 1 changed file with 18 additions and 1 deletion.
19 changes: 18 additions & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,22 @@ import reduceObject from './reduceObject';
import mapObject from './mapObject';
import filterObject from './filterObject';
import eachProperty from './eachProperty';
import map from './map';
import filter from './filter';
import reduce from './reduce';
import push from './push';
import * as Interfaces from './Interfaces';

export { eachProperty, filterObject, mapObject, reduceObject, set, get };
export {
eachProperty,
filterObject,
mapObject,
reduceObject,
set,
get,
map,
filter,
reduce,
push,
Interfaces,
};

0 comments on commit 3393a6e

Please sign in to comment.