style: fix key-spacing alignment
Node.js CI / CI (pull_request) Successful in 30s
Security Scan and Upload / Security & DefectDojo Upload (pull_request) Successful in 55s

This commit is contained in:
2026-03-09 13:21:32 -07:00
parent bf769d1740
commit 52cbdce4ee
2 changed files with 5 additions and 5 deletions
+2 -2
View File
@@ -59,8 +59,8 @@ const amari: Amari = {
],
partials: [ Partials.Channel ],
}),
github: octokit,
githubApp: githubApp,
github: octokit,
githubApp: githubApp,
recentlyActiveChannels: new Set<string>(),
};
+3 -3
View File
@@ -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<string>;
}