Skip to content

Commit

Permalink
style: prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
wolfy1339 committed May 17, 2019
1 parent 1f7010f commit e81fffe
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@ export class App {
private api: {
getSignedJsonWebToken: () => string;
getInstallationAccessToken: (options: {
installationId: number
}) => Promise<string>
}
installationId: number;
}) => Promise<string>;
};
constructor({ id, privateKey, baseUrl, cache }: AppOptions) {
const state: State = {
id,
Expand All @@ -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();
Expand Down

0 comments on commit e81fffe

Please # to comment.