From e81fffe3b6f836fbeb2c3d780303346395084c67 Mon Sep 17 00:00:00 2001 From: wolfy1339 Date: Fri, 17 May 2019 14:16:20 -0400 Subject: [PATCH] style: prettier --- src/index.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/index.ts b/src/index.ts index 354d04202..41aa3a9b9 100644 --- a/src/index.ts +++ b/src/index.ts @@ -22,9 +22,9 @@ export class App { private api: { getSignedJsonWebToken: () => string; getInstallationAccessToken: (options: { - installationId: number - }) => Promise - } + installationId: number; + }) => Promise; + }; constructor({ id, privateKey, baseUrl, cache }: AppOptions) { const state: State = { id, @@ -35,7 +35,7 @@ export class App { this.api = { getSignedJsonWebToken: getSignedJsonWebToken.bind(null, state), getInstallationAccessToken: getInstallationAccessToken.bind(null, state) - } + }; } getSignedJsonWebToken(): string { return this.api.getSignedJsonWebToken();