From 80d6827896136563056ab95e8febdb16aa8a2bca Mon Sep 17 00:00:00 2001 From: Gregor Martynus Date: Mon, 2 Sep 2019 23:39:31 -0700 Subject: [PATCH] refactor: simplify export --- src/index.ts | 18 +++++------------- 1 file changed, 5 insertions(+), 13 deletions(-) diff --git a/src/index.ts b/src/index.ts index 80e486d..6d5aa72 100644 --- a/src/index.ts +++ b/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";