generated from nhcarrigan/template
13 lines
269 B
TypeScript
13 lines
269 B
TypeScript
/**
|
|
* @copyright nhcarrigan
|
|
* @license Naomi's Public License
|
|
* @author Naomi Carrigan
|
|
*/
|
|
import type { PrismaClient, Sanctions } from "@prisma/client";
|
|
|
|
export interface App {
|
|
database: PrismaClient;
|
|
sanctions: Array<Sanctions>;
|
|
cacheUpdated: Date;
|
|
}
|