Files
amari/src/interfaces/amari.ts
T
hikari 52cbdce4ee
Node.js CI / CI (pull_request) Successful in 30s
Security Scan and Upload / Security & DefectDojo Upload (pull_request) Successful in 55s
style: fix key-spacing alignment
2026-03-09 13:21:32 -07:00

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>;
}