feat: setup actions (#1)
Node.js CI / Lint and Test (push) Successful in 36s

Co-authored-by: Naomi Carrigan <commits@nhcarrigan.com>
Co-committed-by: Naomi Carrigan <commits@nhcarrigan.com>
This commit was merged in pull request #1.
This commit is contained in:
2025-01-23 02:22:46 -08:00
committed by Naomi Carrigan
parent ebc793d833
commit 734514f87c
17 changed files with 285 additions and 119 deletions
-3
View File
@@ -4,8 +4,6 @@ import { Client, WebhookClient } from "discord.js";
import { Command } from "./Command";
import { Context } from "./Context";
import type { Prometheus } from "../modules/prometheus.js";
export interface ExtendedClient extends Client {
env: {
token: string;
@@ -14,7 +12,6 @@ export interface ExtendedClient extends Client {
devMode: boolean;
};
db: PrismaClient;
analytics: Prometheus;
commands: Command[];
contexts: Context[];
configs: { [serverId: string]: Omit<configs, "id"> };