Skip to content

Commit

Permalink
refactor: simplify export
Browse files Browse the repository at this point in the history
  • Loading branch information
gr2m committed Sep 3, 2019
1 parent 955e86c commit 80d6827
Showing 1 changed file with 5 additions and 13 deletions.
18 changes: 5 additions & 13 deletions src/index.ts
@@ -1,13 +1,5 @@
import { createBasicAuth } from "@octokit/auth-basic";
import { createAppAuth } from "@octokit/auth-app";
import { createOAuthAppAuth } from "@octokit/auth-oauth-app";
import { createTokenAuth } from "@octokit/auth-token";
import { createActionAuth } from "@octokit/auth-action";

export {
createBasicAuth,
createAppAuth,
createOAuthAppAuth,
createTokenAuth,
createActionAuth
};
export { createBasicAuth } from "@octokit/auth-basic";
export { createAppAuth } from "@octokit/auth-app";
export { createOAuthAppAuth } from "@octokit/auth-oauth-app";
export { createTokenAuth } from "@octokit/auth-token";
export { createActionAuth } from "@octokit/auth-action";

0 comments on commit 80d6827

Please sign in to comment.