generated from nhcarrigan/template
16 lines
347 B
TypeScript
16 lines
347 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;
|
|
recentlyActiveChannels: Set<string>;
|
|
}
|