Skip to content

Commit

Permalink
removed default exports
Browse files Browse the repository at this point in the history
  • Loading branch information
remojansen committed Dec 6, 2016
1 parent a20cd41 commit aaba3dd
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/annotate.ts
Original file line number Diff line number Diff line change
Expand Up @@ -62,4 +62,4 @@ function annotate<T>(

}

export default annotate;
export { annotate };
2 changes: 1 addition & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import annotate from "./annotate";
import { annotate } from "./annotate";
import * as interfaces from "./interfaces";
import { interfaces as inversifyInterfaces } from "inversify";
import {
Expand Down
2 changes: 1 addition & 1 deletion src/register.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { interfaces } from "inversify";
import * as helperInterfaces from "./interfaces";
import annotate from "./annotate";
import { annotate } from "./annotate";

function register(container: interfaces.Container) {
return <T>(
Expand Down

0 comments on commit aaba3dd

Please sign in to comment.