diff --git a/src/index.ts b/src/index.ts index 5897655..5ee3529 100644 --- a/src/index.ts +++ b/src/index.ts @@ -59,8 +59,8 @@ const amari: Amari = { ], partials: [ Partials.Channel ], }), - github: octokit, - githubApp: githubApp, + github: octokit, + githubApp: githubApp, recentlyActiveChannels: new Set(), }; diff --git a/src/interfaces/amari.ts b/src/interfaces/amari.ts index 4749372..e642d45 100644 --- a/src/interfaces/amari.ts +++ b/src/interfaces/amari.ts @@ -8,8 +8,8 @@ import type { Client } from "discord.js"; import type { App } from "octokit"; export interface Amari { - discord: Client; - github: App["octokit"]; - githubApp: App; + discord: Client; + github: App["octokit"]; + githubApp: App; recentlyActiveChannels: Set; }