generated from nhcarrigan/template
20 lines
406 B
TypeScript
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>;
|
|
}
|