added chunithm version selector in admin settings

This commit is contained in:
Polaris
2024-08-20 16:49:01 -04:00
parent 552f737650
commit d6629a72eb
37 changed files with 614 additions and 107 deletions

9
global.d.ts vendored Normal file
View File

@ -0,0 +1,9 @@
// global.d.ts
import { PrismaClient as DaphnisClient } from "@/prisma/schemas/daphnis/generated/daphnis";
import { PrismaClient as ArtemisClient } from "@/prisma/schemas/artemis/generated/artemis";
// adding types to global so primsa.ts doesnt freak out
declare global {
var daphnisClient: DaphnisClient | undefined;
var artemisClient: ArtemisClient | undefined;
}