Files
amari/src/interfaces/amari.ts
T
2026-03-03 09:38:18 -08:00

20 lines
406 B
TypeScript

/**
* @copyright NHCarrigan
* @license Naomi's Public License
* @author Naomi Carrigan
*/
import type { Client } from "discord.js";
import type { App } from "octokit";
export interface Amari {
discord: Client;
github: App["octokit"];
githubApp: App;
lastRssItems: {
freeCodeCamp: string | null;
hackerNews: string | null;
};
recentlyActiveChannels: Set<string>;
}