12 lines
No EOL
252 B
TypeScript
12 lines
No EOL
252 B
TypeScript
import type { PrismaClient } from '@prisma/client';
|
|
import type { Config } from './src/lib/types';
|
|
|
|
declare global {
|
|
namespace NodeJS {
|
|
interface Global {
|
|
prisma: PrismaClient;
|
|
config: Config;
|
|
ratelimit: Set<string>;
|
|
}
|
|
}
|
|
} |