Skip to content

Commit

Permalink
Add proper module.exports
Browse files Browse the repository at this point in the history
Forgot that `export default` isn't quite equivalent
  • Loading branch information
zajrik committed Jul 12, 2017
1 parent 10ef0f5 commit 5fc1f18
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/index.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import { DMManager } from './DMManager';
export { DMManager };
export default DMManager;
module.exports = DMManager;

0 comments on commit 5fc1f18

Please sign in to comment.