Skip to content
This repository has been archived by the owner on Dec 30, 2024. It is now read-only.

Commit

Permalink
fix: export modules and services
Browse files Browse the repository at this point in the history
  • Loading branch information
alitnk committed Jan 14, 2022
1 parent fbb7857 commit da38127
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 6 deletions.
10 changes: 4 additions & 6 deletions src/index.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
export const sum = (a: number, b: number) => {
if ('development' === process.env.NODE_ENV) {
console.log('boop');
}
return a + b;
};
export * from './interfaces';
export * from './octokit.constants';
export * from './octokit.module';
export * from './octokit.service';
1 change: 1 addition & 0 deletions src/interfaces/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export * from './octokit-module-options.interface';

0 comments on commit da38127

Please sign in to comment.