mirror of
https://github.com/diced/zipline.git
synced 2025-03-28 23:11:22 -05:00
11 lines
No EOL
222 B
TypeScript
11 lines
No EOL
222 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;
|
|
}
|
|
}
|
|
} |