11 lines
221 B
TypeScript
11 lines
221 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
|
||
|
}
|
||
|
}
|
||
|
}
|